jitterbug29: u_fgetconverter

X-Commit-URL: https://ssl.icu-project.org/trac/changeset/61
This commit is contained in:
Steven R. Loomis 1999-10-15 01:28:02 +00:00
parent 6feff00f74
commit 783a41fbd7

View file

@ -28,11 +28,14 @@
#include <stdarg.h>
#include "utypes.h"
#include <ucnv.h>
/** Forward declaration of a Unicode-aware file */
typedef struct UFILE UFILE;
/**
* Open a UFILE.
* A UFILE is a wrapper around a FILE* that is locale and codepage aware.
@ -136,6 +139,13 @@ u_fsetcodepage(const char *codepage,
UFILE *file);
/**
* Returns an alias to the converter being used for this file.
* @param file The UFILE to set.
* @return alias to the converter
*/
CAPI UConverter *u_fgetConverter(UFILE *f);
/* Output functions */
/**