346daeb6c1
X-SVN-Rev: 17565
71 lines
2.2 KiB
C
71 lines
2.2 KiB
C
/*
|
|
*******************************************************************************
|
|
*
|
|
* Copyright (C) 2005, International Business Machines
|
|
* Corporation and others. All Rights Reserved.
|
|
*
|
|
*******************************************************************************
|
|
* file name: writesrc.h
|
|
* encoding: US-ASCII
|
|
* tab size: 8 (not used)
|
|
* indentation:4
|
|
*
|
|
* created on: 2005apr23
|
|
* created by: Markus W. Scherer
|
|
*
|
|
* Helper functions for writing source code for data.
|
|
*/
|
|
|
|
#ifndef __WRITESRC_H__
|
|
#define __WRITESRC_H__
|
|
|
|
#include <stdio.h>
|
|
#include "unicode/utypes.h"
|
|
#include "utrie.h"
|
|
|
|
/**
|
|
* Create a source text file and write a header comment with the ICU copyright.
|
|
*/
|
|
U_CAPI FILE * U_EXPORT2
|
|
usrc_create(const char *path, const char *filename);
|
|
|
|
/**
|
|
* Write the contents of an array of 8/16/32-bit words.
|
|
* The prefix and postfix are optional (can be NULL) and are written first/last.
|
|
* The prefix may contain a %ld or similar field for the array length.
|
|
* The {} and declaration etc. need to be included in prefix/postfix or
|
|
* printed before and after the array contents.
|
|
*/
|
|
U_CAPI void U_EXPORT2
|
|
usrc_writeArray(FILE *f,
|
|
const char *prefix,
|
|
const void *p, int32_t width, int32_t length,
|
|
const char *postfix);
|
|
|
|
/**
|
|
* Calls usrc_writeArray() for the index and data arrays of a runtime UTrie.
|
|
* Only the index array is written for a 16-bit UTrie. In this case, dataPrefix
|
|
* is ignored and can be NULL.
|
|
*/
|
|
U_CAPI void U_EXPORT2
|
|
usrc_writeUTrieArrays(FILE *f,
|
|
const char *indexPrefix, const char *dataPrefix,
|
|
const UTrie *pTrie,
|
|
const char *postfix);
|
|
|
|
/**
|
|
* Writes the UTrie struct values.
|
|
* The {} and declaration etc. need to be included in prefix/postfix or
|
|
* printed before and after the array contents.
|
|
* If getFoldingOffsetName==NULL then "utrie_defaultGetFoldingOffset" is printed.
|
|
*/
|
|
U_CAPI void U_EXPORT2
|
|
usrc_writeUTrieStruct(FILE *f,
|
|
const char *prefix,
|
|
const UTrie *pTrie,
|
|
const char *indexName, const char *dataName,
|
|
const char *getFoldingOffsetName,
|
|
const char *postfix);
|
|
|
|
#endif
|