jitterbug29: u_fgetconverter

git-svn-id: http://source.icu-project.org/repos/icu/icu/trunk@61 0a8b766c-62c9-45f9-954d-7f2943c9ead0
This commit is contained in:
Steven R. Loomis 1999-10-15 01:28:02 +00:00
parent 3ddd6cd295
commit dcf010a40a

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 */
/**