blob: 7576235d7172ab6572db5b0f20db97f4453c3007 [file] [log] [blame]
/*
******************************************************************************
*
* Copyright (C) 1998-2001, International Business Machines
* Corporation and others. All Rights Reserved.
*
******************************************************************************
*
* File ustdio.h
*
* Modification History:
*
* Date Name Description
* 10/16/98 stephen Creation.
* 11/06/98 stephen Modified per code review.
* 03/12/99 stephen Modified for new C API.
* 07/19/99 stephen Minor doc update.
* 02/01/01 george Added sprintf & sscanf with all of its variants
******************************************************************************
*/
#ifndef USTDIO_H
#define USTDIO_H
#include <stdio.h>
#include <stdarg.h>
#include "unicode/utypes.h"
#include "unicode/ucnv.h"
#include "unicode/utrans.h"
/*
TODO
The following is a small list as to what is currently wrong/suggestions for
ustdio.
* %D and %T printf uses the current timezone, but the scanf version uses GMT.
* %p should be deprecated. Pointers are 2-16 bytes big and scanf should
really read them.
* The format specification should use int32_t and ICU type variants instead of
the compiler dependent int.
* We should consider using Microsoft's wprintf and wscanf format
specification.
* %C and %S are aliases of %lc and %ls, which are used for wchar_t.
We should consider using this for UChar and replace %K and %U,
or we should make them use wchar_t.
* + in printf format specification is incomplete.
* Make sure that #, blank and precision in the printf format specification
works.
* Make sure that * in the scanf format specification works.
* Each UFILE takes up at least 2KB. This should be really reduced.
* This library does buffering. The OS should do this for us already. Check on
this, and remove it from this library, if this is the case. Double buffering
wastes a lot of time and space.
* Make sure that surrogates are supported. It doesn't look like %[], %s or %U
properly handle surrogates in both scanf()'s.
* The ustream header should also include operator<< and
operator>> for UDate (not double). This may not work on some compilers
that use these operators on a double.
* Testing should be done for reading and writing multi-byte encodings,
and make sure that a character that is contained across buffer boundries
works even for incomplete characters.
* Make sure that the last character is flushed when the file/string is closed.
* snprintf should follow the C99 standard for the return value, which is
return the number of characters (excluding the trailing '\0')
which would have been written to the destination string regardless
of available space. This is like pre-flighting.
* Everything that uses %s should do what operator>> does for UnicodeString.
It should convert one byte at a time, and once a character is
converted then check to see if it's whitespace or in the scanset.
If it's whitespace or in the scanset, put all the bytes back (do nothing
for sprintf/sscanf).
* If bad string data is encountered, make sure that the function fails
without memory leaks and the unconvertable characters are valid
substitution or are escaped characters.
* u_fungetc() can't unget a character when it's at the beginning of the
internal conversion buffer, and it shouldn't be writing new
characters to this buffer because they might be different characters.
This can be tested by writing a file, and reading it backwards by
using u_fgetc and two u_fungetc() calls with incorrect data.
FYI The behavior is undefined for ungetc() when an incorrect character
is put back, when its called multiple times in a row, or when
a its called without a read operation.
* u_fflush() and u_fclose should return an int32_t like C99 functions.
0 is returned if the operation was successful and EOF otherwise.
* u_fsettransliterator does not support U_READ side of transliteration.
* The format specifier should limit the size of a format or honor it in
order to prevent buffer overruns. (e.g. %1000.1000d).
* u_fgets is different from stdio. The UChar and UFile arguments are swapped.
* u_fread and u_fwrite don't exist. They're needed for reading and writing
data structures without any conversion.
* u_file_read and u_file_write are used for writing strings. u_fgets and
u_fputs or u_fread and u_fwrite should be used to do this.
* u_fgetcx isn't really needed anymore because the transliterator is a
part of the file API. It allows multiple kinds of escape sequences
to be unescaped.
* We should consider using a UnicodeSet for scanset.
* scanset has a buffer overflow and underflow bug for both string and file
APIs.
* The width '*' parameter for all scanf formats, including scanset, needs
better testing. This prevents buffer overflows.
* u_fgetc() and u_fungetc() should use UChar32 instead of UChar, or at
least 32-bit versions should be available.
* More testing is needed.
*/
/**
* When an end of file is encountered, this value can be returned.
* @see u_fgetc
* @draft
*/
#define U_EOF 0xFFFF
/** Forward declaration of a Unicode-aware file @draft */
typedef struct UFILE UFILE;
/**
* Enum for which direction of stream a transliterator applies to.
* @see u_fsettransliterator
* @draft
*/
typedef enum {
U_READ = 1,
U_WRITE = 2,
U_READWRITE =3 /* == (U_READ | U_WRITE) */
} UFileDirection;
/**
* Open a UFILE.
* A UFILE is a wrapper around a FILE* that is locale and codepage aware.
* That is, data written to a UFILE will be formatted using the conventions
* specified by that UFILE's Locale; this data will be in the character set
* specified by that UFILE's codepage.
* @param filename The name of the file to open.
* @param perm The read/write permission for the UFILE; one of "r", "w", "rw"
* @param locale The locale whose conventions will be used to format
* and parse output. If this parameter is NULL, the default locale will
* be used.
* @param codepage The codepage in which data will be written to and
* read from the file. If this paramter is NULL, data will be written and
* read using the default codepage for <TT>locale</TT>, unless <TT>locale</TT>
* is NULL, in which case the system default codepage will be used.
* @return A new UFILE, or NULL if an error occurred.
* @draft
*/
U_CAPI UFILE* U_EXPORT2
u_fopen(const char *filename,
const char *perm,
const char *locale,
const char *codepage);
/**
* Open a UFILE on top of an existing FILE* stream.
* @param f The FILE* to which this UFILE will attach.
* @param locale The locale whose conventions will be used to format
* and parse output. If this parameter is NULL, the default locale will
* be used.
* @param codepage The codepage in which data will be written to and
* read from the file. If this paramter is NULL, data will be written and
* read using the default codepage for <TT>locale</TT>, unless <TT>locale</TT>
* is NULL, in which case the system default codepage will be used.
* @return A new UFILE, or NULL if an error occurred.
* @draft
*/
U_CAPI UFILE* U_EXPORT2
u_finit(FILE *f,
const char *locale,
const char *codepage);
/**
* Close a UFILE.
* @param file The UFILE to close.
* @draft
*/
U_CAPI void U_EXPORT2
u_fclose(UFILE *file);
/**
* Flush output of a UFILE. Implies a flush of
* converter/transliterator state. (That is, a logical break is
* made in the output stream - for example if a different type of
* output is desired.) The underlying OS level file is also flushed.
* @param file The UFILE to flush.
* @draft
*/
U_CAPI void U_EXPORT2
u_fflush(UFILE *file);
/**
* Get the FILE* associated with a UFILE.
* @param f The UFILE
* @return A FILE*, owned by the UFILE. The FILE <EM>must not</EM> be closed.
* @draft
*/
U_CAPI FILE* U_EXPORT2
u_fgetfile(UFILE *f);
#if !UCONFIG_NO_FORMATTING
/**
* Get the locale whose conventions are used to format and parse output.
* This is the same locale passed in the preceding call to<TT>u_fsetlocale</TT>
* or <TT>u_fopen</TT>.
* @param file The UFILE to set.
* @return The locale whose conventions are used to format and parse output.
* @draft
*/
U_CAPI const char* U_EXPORT2
u_fgetlocale(UFILE *file);
/**
* Set the locale whose conventions will be used to format and parse output.
* @param locale The locale whose conventions will be used to format
* and parse output.
* @param file The UFILE to query.
* @return NULL if successful, otherwise a negative number.
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_fsetlocale(const char *locale,
UFILE *file);
#endif
/**
* Get the codepage in which data is written to and read from the UFILE.
* This is the same codepage passed in the preceding call to
* <TT>u_fsetcodepage</TT> or <TT>u_fopen</TT>.
* @param file The UFILE to query.
* @return The codepage in which data is written to and read from the UFILE,
* or NULL if an error occurred.
* @draft
*/
U_CAPI const char* U_EXPORT2
u_fgetcodepage(UFILE *file);
/**
* Set the codepage in which data will be written to and read from the UFILE.
* All Unicode data written to the UFILE will be converted to this codepage
* before it is written to the underlying FILE*.
* @param codepage The codepage in which data will be written to
* and read from the file. For example <TT>"latin-1"</TT> or <TT>"ibm-943</TT>.
* A value of NULL means the default codepage for the UFILE's current
* locale will be used.
* @param file The UFILE to set.
* @return NULL if successful, otherwise a negative number.
* @draft
*/
U_CAPI int32_t U_EXPORT2
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
* @draft
*/
U_CAPI UConverter* U_EXPORT2 u_fgetConverter(UFILE *f);
/* Output functions */
/**
* Write formatted data to a UFILE.
* @param f The UFILE to which to write.
* @param patternSpecification A pattern specifying how <TT>u_fprintf</TT> will
* interpret the variable arguments received and format the data.
* @return The number of Unicode characters written to <TT>f</TT>.
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_fprintf( UFILE *f,
const char *patternSpecification,
... );
/**
* Write formatted data to a UFILE.
* This is identical to <TT>u_fprintf</TT>, except that it will
* <EM>not</EM> call <TT>va_start/TT> and <TT>va_end</TT>.
* @param f The UFILE to which to write.
* @param patternSpecification A pattern specifying how <TT>u_fprintf</TT> will
* interpret the variable arguments received and format the data.
* @param ap The argument list to use.
* @return The number of Unicode characters written to <TT>f</TT>.
* @see u_fprintf
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_vfprintf( UFILE *f,
const char *patternSpecification,
va_list ap);
/**
* Write formatted data to a UFILE.
* @param f The UFILE to which to write.
* @param patternSpecification A pattern specifying how <TT>u_fprintf</TT> will
* interpret the variable arguments received and format the data.
* @return The number of Unicode characters written to <TT>f</TT>.
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_fprintf_u( UFILE *f,
const UChar *patternSpecification,
... );
/**
* Write formatted data to a UFILE.
* This is identical to <TT>u_fprintf_u</TT>, except that it will
* <EM>not</EM> call <TT>va_start/TT> and <TT>va_end</TT>.
* @param f The UFILE to which to write.
* @param patternSpecification A pattern specifying how <TT>u_fprintf</TT> will
* interpret the variable arguments received and format the data.
* @param ap The argument list to use.
* @return The number of Unicode characters written to <TT>f</TT>.
* @see u_fprintf_u
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_vfprintf_u( UFILE *f,
const UChar *patternSpecification,
va_list ap);
/**
* Write a Unicode to a UFILE. The null (U+0000) terminated UChar*
* <TT>s</TT> will be written to <TT>f</TT>, excluding the NULL terminator.
* A newline will be added to <TT>f</TT>.
* @param s The UChar* to write.
* @param f The UFILE to which to write.
* @return A non-negative number if successful, EOF otherwise.
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_fputs(const UChar *s,
UFILE *f);
/**
* Write a UChar to a UFILE.
* @param uc The UChar to write.
* @param f The UFILE to which to write.
* @return The character written if successful, EOF otherwise.
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_fputc(UChar uc,
UFILE *f);
/**
* Write Unicode to a UFILE.
* The ustring passed in will be converted to the UFILE's underlying
* codepage before it is written.
* @param chars A pointer to the Unicode data to write.
* @param count The number of Unicode characters to write
* @param f The UFILE to which to write.
* @return The number of Unicode characters written.
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_file_write(const UChar *chars,
int32_t count,
UFILE *f);
/* Input functions */
/**
* Read formatted data from a UFILE.
* @param f The UFILE from which to read.
* @param patternSpecification A pattern specifying how <TT>u_fscanf</TT> will
* interpret the variable arguments received and parse the data.
* @return The number of items successfully converted and assigned, or EOF
* if an error occurred.
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_fscanf( UFILE *f,
const char *patternSpecification,
... );
/**
* Read formatted data from a UFILE.
* This is identical to <TT>u_fscanf</TT>, except that it will
* <EM>not</EM> call <TT>va_start/TT> and <TT>va_end</TT>.
* @param f The UFILE from which to read.
* @param patternSpecification A pattern specifying how <TT>u_fscanf</TT> will
* interpret the variable arguments received and parse the data.
* @param ap The argument list to use.
* @return The number of items successfully converted and assigned, or EOF
* if an error occurred.
* @see u_fscanf
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_vfscanf( UFILE *f,
const char *patternSpecification,
va_list ap);
/**
* Read formatted data from a UFILE.
* @param f The UFILE from which to read.
* @param patternSpecification A pattern specifying how <TT>u_fscanf</TT> will
* interpret the variable arguments received and parse the data.
* @return The number of items successfully converted and assigned, or EOF
* if an error occurred.
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_fscanf_u( UFILE *f,
const UChar *patternSpecification,
... );
/**
* Read formatted data from a UFILE.
* This is identical to <TT>u_fscanf_u</TT>, except that it will
* <EM>not</EM> call <TT>va_start/TT> and <TT>va_end</TT>.
* @param f The UFILE from which to read.
* @param patternSpecification A pattern specifying how <TT>u_fscanf</TT> will
* interpret the variable arguments received and parse the data.
* @param ap The argument list to use.
* @return The number of items successfully converted and assigned, or EOF
* if an error occurred.
* @see u_fscanf_u
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_vfscanf_u( UFILE *f,
const UChar *patternSpecification,
va_list ap);
/**
* Read one line of text into a UChar* string from a UFILE. The newline
* at the end of the line is read into the string. The string is always
* null terminated
* @param f The UFILE from which to read.
* @param n The maximum number of characters - 1 to read.
* @param s The UChar* to receive the read data. Characters will be
* stored successively in <TT>s</TT> until a newline or EOF is
* reached. A null character (U+0000) will be appended to <TT>s</TT>.
* @return A pointer to <TT>s</TT>, or NULL if no characters were available.
* @draft
*/
U_CAPI UChar* U_EXPORT2
u_fgets(UFILE *f,
int32_t n,
UChar *s);
/**
* Read a UChar from a UFILE.
* @param f The UFILE from which to read.
* @return The UChar value read, or U+FFFF if no character was available.
* @draft
*/
U_CAPI UChar U_EXPORT2
u_fgetc(UFILE *f);
/**
* Read a UChar from a UFILE and process escape sequences. If the
* next character is not a backslash, this is the same as calling
* u_fgetc(). If it is, then additional characters comprising the
* escape sequence will be read from the UFILE, parsed, and the
* resultant UChar returned. Ill-formed escape sequences return
* U+FFFFFFFF.
* @param f The UFILE from which to read.
* @return The UChar value read, or U+FFFF if no character was
* available, or U+FFFFFFFF if an ill-formed escape sequence was
* encountered.
* @see u_unescape()
* @draft
*/
U_CAPI UChar32 U_EXPORT2
u_fgetcx(UFILE *f);
/**
* Unget a UChar from a UFILE.
* If this function is not the first to operate on <TT>f</TT> after a call
* to <TT>u_fgetc</TT>, the results are undefined.
* @param c The UChar to put back on the stream.
* @param f The UFILE to receive <TT>c</TT>.
* @return The UChar value put back if successful, U+FFFF otherwise.
* @draft
*/
U_CAPI UChar U_EXPORT2
u_fungetc(UChar c,
UFILE *f);
/**
* Read Unicode from a UFILE.
* Bytes will be converted from the UFILE's underlying codepage, with
* subsequent conversion to Unicode.
* @param chars A pointer to receive the Unicode data.
* @param count The number of Unicode characters to read.
* @param f The UFILE from which to read.
* @return The number of Unicode characters read.
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_file_read(UChar *chars,
int32_t count,
UFILE *f);
#if !UCONFIG_NO_TRANSLITERATION
/**
* Set a transliterator on the UFILE. The transliterator will be owned by the
* UFILE.
* @param file The UFILE to set transliteration on
* @param adopt The UTransliterator to set. Can be NULL, which will
* mean that no transliteration is used.
* @param direction either U_READ, U_WRITE, or U_READWRITE - sets
* which direction the transliterator is to be applied to. If
* U_READWRITE, the "Read" transliteration will be in the inverse
* direction.
* @param status ICU error code.
* @return The previously set transliterator, owned by the
* caller. If U_READWRITE is specified, only the WRITE transliterator
* is returned. In most cases, the caller should call utrans_close()
* on the result of this function.
* @draft
*/
U_CAPI UTransliterator* U_EXPORT2
u_fsettransliterator(UFILE *file, UFileDirection direction,
UTransliterator *adopt, UErrorCode *status);
#endif
/* Output string functions */
/**
* Write formatted data to a Unicode string.
*
* @param buffer The Unicode String to which to write.
* @param locale The locale to use for formatting the numbers, dates and other
* locale specific information.
* @param patternSpecification A pattern specifying how <TT>u_sprintf</TT> will
* interpret the variable arguments received and format the data.
* @return The number of Unicode code units written to <TT>buffer</TT>. This
* does not include the terminating null character.
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_sprintf(UChar *buffer,
const char *locale,
const char *patternSpecification,
... );
/**
* Write formatted data to a Unicode string. When the number of code units
* required to store the data exceeds <TT>count</TT>, then <TT>count</TT> code
* units of data are stored in <TT>buffer</TT> and a negative value is
* returned. When the number of code units required to store the data equals
* <TT>count</TT>, the string is not null terminated and <TT>count</TT> is
* returned.
*
* @param buffer The Unicode String to which to write.
* @param count The number of code units to read.
* @param locale The locale to use for formatting the numbers, dates and other
* locale specific information.
* @param patternSpecification A pattern specifying how <TT>u_sprintf</TT> will
* interpret the variable arguments received and format the data.
* @return The number of Unicode code units written to <TT>buffer</TT>. This
* does not include the terminating null character.
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_snprintf(UChar *buffer,
int32_t count,
const char *locale,
const char *patternSpecification,
... );
/**
* Write formatted data to a Unicode string.
* This is identical to <TT>u_sprintf</TT>, except that it will
* <EM>not</EM> call <TT>va_start/TT> and <TT>va_end</TT>.
*
* @param buffer The Unicode string to which to write.
* @param locale The locale to use for formatting the numbers, dates and other
* locale specific information.
* @param patternSpecification A pattern specifying how <TT>u_sprintf</TT> will
* interpret the variable arguments received and format the data.
* @param ap The argument list to use.
* @return The number of Unicode characters written to <TT>buffer</TT>.
* @see u_sprintf
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_vsprintf(UChar *buffer,
const char *locale,
const char *patternSpecification,
va_list ap);
/**
* Write formatted data to a Unicode string.
* This is identical to <TT>u_snprintf</TT>, except that it will
* <EM>not</EM> call <TT>va_start/TT> and <TT>va_end</TT>.<br><br>
* When the number of code units required to store the data exceeds
* <TT>count</TT>, then <TT>count</TT> code units of data are stored in
* <TT>buffer</TT> and a negative value is returned. When the number of code
* units required to store the data equals <TT>count</TT>, the string is not
* null terminated and <TT>count</TT> is returned.
*
* @param buffer The Unicode string to which to write.
* @param count The number of code units to read.
* @param locale The locale to use for formatting the numbers, dates and other
* locale specific information.
* @param patternSpecification A pattern specifying how <TT>u_sprintf</TT> will
* interpret the variable arguments received and format the data.
* @param ap The argument list to use.
* @return The number of Unicode characters written to <TT>buffer</TT>.
* @see u_sprintf
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_vsnprintf(UChar *buffer,
int32_t count,
const char *locale,
const char *patternSpecification,
va_list ap);
/**
* Write formatted data to a Unicode string.
*
* @param buffer The Unicode string to which to write.
* @param locale The locale to use for formatting the numbers, dates and other
* locale specific information.
* @param patternSpecification A pattern specifying how <TT>u_sprintf</TT> will
* interpret the variable arguments received and format the data.
* @return The number of Unicode characters written to <TT>buffer</TT>.
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_sprintf_u(UChar *buffer,
const char *locale,
const UChar *patternSpecification,
... );
/**
* Write formatted data to a Unicode string. When the number of code units
* required to store the data exceeds <TT>count</TT>, then <TT>count</TT> code
* units of data are stored in <TT>buffer</TT> and a negative value is
* returned. When the number of code units required to store the data equals
* <TT>count</TT>, the string is not null terminated and <TT>count</TT> is
* returned.
*
* @param buffer The Unicode string to which to write.
* @param count The number of code units to read.
* @param locale The locale to use for formatting the numbers, dates and other
* locale specific information.
* @param patternSpecification A pattern specifying how <TT>u_sprintf</TT> will
* interpret the variable arguments received and format the data.
* @return The number of Unicode characters written to <TT>buffer</TT>.
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_snprintf_u(UChar *buffer,
int32_t count,
const char *locale,
const UChar *patternSpecification,
... );
/**
* Write formatted data to a Unicode string.
* This is identical to <TT>u_sprintf_u</TT>, except that it will
* <EM>not</EM> call <TT>va_start/TT> and <TT>va_end</TT>.
*
* @param buffer The Unicode string to which to write.
* @param count The number of code units to read.
* @param locale The locale to use for formatting the numbers, dates and other
* locale specific information.
* @param patternSpecification A pattern specifying how <TT>u_sprintf</TT> will
* interpret the variable arguments received and format the data.
* @param ap The argument list to use.
* @return The number of Unicode characters written to <TT>f</TT>.
* @see u_sprintf_u
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_vsprintf_u(UChar *buffer,
const char *locale,
const UChar *patternSpecification,
va_list ap);
/**
* Write formatted data to a Unicode string.
* This is identical to <TT>u_snprintf_u</TT>, except that it will
* <EM>not</EM> call <TT>va_start/TT> and <TT>va_end</TT>.
* When the number of code units required to store the data exceeds
* <TT>count</TT>, then <TT>count</TT> code units of data are stored in
* <TT>buffer</TT> and a negative value is returned. When the number of code
* units required to store the data equals <TT>count</TT>, the string is not
* null terminated and <TT>count</TT> is returned.
*
* @param buffer The Unicode string to which to write.
* @param locale The locale to use for formatting the numbers, dates and other
* locale specific information.
* @param patternSpecification A pattern specifying how <TT>u_sprintf</TT> will
* interpret the variable arguments received and format the data.
* @param ap The argument list to use.
* @return The number of Unicode characters written to <TT>f</TT>.
* @see u_sprintf_u
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_vsnprintf_u(UChar *buffer,
int32_t count,
const char *locale,
const UChar *patternSpecification,
va_list ap);
/* Input string functions */
/**
* Read formatted data from a Unicode string.
*
* @param buffer The Unicode string from which to read.
* @param locale The locale to use for parsing the numbers, dates and other
* locale specific information.
* @param patternSpecification A pattern specifying how <TT>u_sscanf</TT> will
* interpret the variable arguments received and parse the data.
* @return The number of items successfully converted and assigned, or EOF
* if an error occurred.
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_sscanf(const UChar *buffer,
const char *locale,
const char *patternSpecification,
... );
/**
* Read formatted data from a Unicode string.
* This is identical to <TT>u_sscanf</TT>, except that it will
* <EM>not</EM> call <TT>va_start/TT> and <TT>va_end</TT>.
*
* @param buffer The Unicode string from which to read.
* @param locale The locale to use for parsing the numbers, dates and other
* locale specific information.
* @param patternSpecification A pattern specifying how <TT>u_sscanf</TT> will
* interpret the variable arguments received and parse the data.
* @param ap The argument list to use.
* @return The number of items successfully converted and assigned, or EOF
* if an error occurred.
* @see u_sscanf
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_vsscanf(const UChar *buffer,
const char *locale,
const char *patternSpecification,
va_list ap);
/**
* Read formatted data from a Unicode string.
*
* @param buffer The Unicode string from which to read.
* @param locale The locale to use for parsing the numbers, dates and other
* locale specific information.
* @param patternSpecification A pattern specifying how <TT>u_sscanf</TT> will
* interpret the variable arguments received and parse the data.
* @return The number of items successfully converted and assigned, or EOF
* if an error occurred.
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_sscanf_u(const UChar *buffer,
const char *locale,
const UChar *patternSpecification,
... );
/**
* Read formatted data from a Unicode string.
* This is identical to <TT>u_sscanf_u</TT>, except that it will
* <EM>not</EM> call <TT>va_start/TT> and <TT>va_end</TT>.
*
* @param buffer The UFILE from which to read.
* @param locale The locale to use for parsing the numbers, dates and other
* locale specific information.
* @param patternSpecification A pattern specifying how <TT>u_sscanf</TT> will
* interpret the variable arguments received and parse the data.
* @param ap The argument list to use.
* @return The number of items successfully converted and assigned, or EOF
* if an error occurred.
* @see u_sscanf_u
* @draft
*/
U_CAPI int32_t U_EXPORT2
u_vsscanf_u(const UChar *buffer,
const char *locale,
const UChar *patternSpecification,
va_list ap);
#endif