Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > media > main-release > by-pkgid > 280da2a01a3d16776505ea3f476de84f > files > 489

icu-doc-3.8.1-2mdv2008.1.x86_64.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>ICU 3.8: ustdio.h Source File</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.1 -->
<div class="tabs">
  <ul>
    <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
    <li><a href="modules.html"><span>Modules</span></a></li>
    <li><a href="classes.html"><span>Data&nbsp;Structures</span></a></li>
    <li id="current"><a href="files.html"><span>Files</span></a></li>
    <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
    <li>
      <form action="search.php" method="get">
        <table cellspacing="0" cellpadding="0" border="0">
          <tr>
            <td><label>&nbsp;<u>S</u>earch&nbsp;for&nbsp;</label></td>
            <td><input type="text" name="query" value="" size="20" accesskey="s"/></td>
          </tr>
        </table>
      </form>
    </li>
  </ul></div>
<div class="tabs">
  <ul>
    <li><a href="files.html"><span>File&nbsp;List</span></a></li>
    <li><a href="globals.html"><span>Globals</span></a></li>
  </ul></div>
<h1>ustdio.h</h1><a href="ustdio_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<a name="l00002"></a>00002 <span class="comment">******************************************************************************</span>
<a name="l00003"></a>00003 <span class="comment">*</span>
<a name="l00004"></a>00004 <span class="comment">*   Copyright (C) 1998-2007, International Business Machines</span>
<a name="l00005"></a>00005 <span class="comment">*   Corporation and others.  All Rights Reserved.</span>
<a name="l00006"></a>00006 <span class="comment">*</span>
<a name="l00007"></a>00007 <span class="comment">******************************************************************************</span>
<a name="l00008"></a>00008 <span class="comment">*</span>
<a name="l00009"></a>00009 <span class="comment">* File ustdio.h</span>
<a name="l00010"></a>00010 <span class="comment">*</span>
<a name="l00011"></a>00011 <span class="comment">* Modification History:</span>
<a name="l00012"></a>00012 <span class="comment">*</span>
<a name="l00013"></a>00013 <span class="comment">*   Date        Name        Description</span>
<a name="l00014"></a>00014 <span class="comment">*   10/16/98    stephen     Creation.</span>
<a name="l00015"></a>00015 <span class="comment">*   11/06/98    stephen     Modified per code review.</span>
<a name="l00016"></a>00016 <span class="comment">*   03/12/99    stephen     Modified for new C API.</span>
<a name="l00017"></a>00017 <span class="comment">*   07/19/99    stephen     Minor doc update.</span>
<a name="l00018"></a>00018 <span class="comment">*   02/01/01    george      Added sprintf &amp; sscanf with all of its variants</span>
<a name="l00019"></a>00019 <span class="comment">******************************************************************************</span>
<a name="l00020"></a>00020 <span class="comment">*/</span>
<a name="l00021"></a>00021 
<a name="l00022"></a>00022 <span class="preprocessor">#ifndef USTDIO_H</span>
<a name="l00023"></a>00023 <span class="preprocessor"></span><span class="preprocessor">#define USTDIO_H</span>
<a name="l00024"></a>00024 <span class="preprocessor"></span>
<a name="l00025"></a>00025 <span class="preprocessor">#include &lt;stdio.h&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;stdarg.h&gt;</span>
<a name="l00027"></a>00027 
<a name="l00028"></a>00028 <span class="preprocessor">#include "<a class="code" href="utypes_8h.html">unicode/utypes.h</a>"</span>
<a name="l00029"></a>00029 <span class="preprocessor">#include "<a class="code" href="ucnv_8h.html">unicode/ucnv.h</a>"</span>
<a name="l00030"></a>00030 <span class="preprocessor">#include "<a class="code" href="utrans_8h.html">unicode/utrans.h</a>"</span>
<a name="l00031"></a>00031 
<a name="l00032"></a>00032 <span class="comment">/*</span>
<a name="l00033"></a>00033 <span class="comment">    TODO</span>
<a name="l00034"></a>00034 <span class="comment"> The following is a small list as to what is currently wrong/suggestions for</span>
<a name="l00035"></a>00035 <span class="comment"> ustdio.</span>
<a name="l00036"></a>00036 <span class="comment"></span>
<a name="l00037"></a>00037 <span class="comment"> * Make sure that * in the scanf format specification works for all formats.</span>
<a name="l00038"></a>00038 <span class="comment"> * Each UFILE takes up at least 2KB.</span>
<a name="l00039"></a>00039 <span class="comment">    Look into adding setvbuf() for configurable buffers.</span>
<a name="l00040"></a>00040 <span class="comment"> * This library does buffering. The OS should do this for us already. Check on</span>
<a name="l00041"></a>00041 <span class="comment">    this, and remove it from this library, if this is the case. Double buffering</span>
<a name="l00042"></a>00042 <span class="comment">    wastes a lot of time and space.</span>
<a name="l00043"></a>00043 <span class="comment"> * Test stdin and stdout with the u_f* functions</span>
<a name="l00044"></a>00044 <span class="comment"> * Testing should be done for reading and writing multi-byte encodings,</span>
<a name="l00045"></a>00045 <span class="comment">    and make sure that a character that is contained across buffer boundries</span>
<a name="l00046"></a>00046 <span class="comment">    works even for incomplete characters.</span>
<a name="l00047"></a>00047 <span class="comment"> * Make sure that the last character is flushed when the file/string is closed.</span>
<a name="l00048"></a>00048 <span class="comment"> * snprintf should follow the C99 standard for the return value, which is</span>
<a name="l00049"></a>00049 <span class="comment">    return the number of characters (excluding the trailing '\0')</span>
<a name="l00050"></a>00050 <span class="comment">    which would have been written to the destination string regardless</span>
<a name="l00051"></a>00051 <span class="comment">    of available space. This is like pre-flighting.</span>
<a name="l00052"></a>00052 <span class="comment"> * Everything that uses %s should do what operator&gt;&gt; does for UnicodeString.</span>
<a name="l00053"></a>00053 <span class="comment">    It should convert one byte at a time, and once a character is</span>
<a name="l00054"></a>00054 <span class="comment">    converted then check to see if it's whitespace or in the scanset.</span>
<a name="l00055"></a>00055 <span class="comment">    If it's whitespace or in the scanset, put all the bytes back (do nothing</span>
<a name="l00056"></a>00056 <span class="comment">    for sprintf/sscanf).</span>
<a name="l00057"></a>00057 <span class="comment"> * If bad string data is encountered, make sure that the function fails</span>
<a name="l00058"></a>00058 <span class="comment">    without memory leaks and the unconvertable characters are valid</span>
<a name="l00059"></a>00059 <span class="comment">    substitution or are escaped characters.</span>
<a name="l00060"></a>00060 <span class="comment"> * u_fungetc() can't unget a character when it's at the beginning of the</span>
<a name="l00061"></a>00061 <span class="comment">    internal conversion buffer. For example, read the buffer size # of</span>
<a name="l00062"></a>00062 <span class="comment">    characters, and then ungetc to get the previous character that was</span>
<a name="l00063"></a>00063 <span class="comment">    at the end of the last buffer.</span>
<a name="l00064"></a>00064 <span class="comment"> * u_fflush() and u_fclose should return an int32_t like C99 functions.</span>
<a name="l00065"></a>00065 <span class="comment">    0 is returned if the operation was successful and EOF otherwise.</span>
<a name="l00066"></a>00066 <span class="comment"> * u_fsettransliterator does not support U_READ side of transliteration.</span>
<a name="l00067"></a>00067 <span class="comment"> * The format specifier should limit the size of a format or honor it in</span>
<a name="l00068"></a>00068 <span class="comment">    order to prevent buffer overruns.  (e.g. %256.256d).</span>
<a name="l00069"></a>00069 <span class="comment"> * u_fread and u_fwrite don't exist. They're needed for reading and writing</span>
<a name="l00070"></a>00070 <span class="comment">    data structures without any conversion.</span>
<a name="l00071"></a>00071 <span class="comment"> * u_file_read and u_file_write are used for writing strings. u_fgets and</span>
<a name="l00072"></a>00072 <span class="comment">    u_fputs or u_fread and u_fwrite should be used to do this.</span>
<a name="l00073"></a>00073 <span class="comment"> * The width parameter for all scanf formats, including scanset, needs</span>
<a name="l00074"></a>00074 <span class="comment">    better testing. This prevents buffer overflows.</span>
<a name="l00075"></a>00075 <span class="comment"> * Figure out what is suppose to happen when a codepage is changed midstream.</span>
<a name="l00076"></a>00076 <span class="comment">    Maybe a flush or a rewind are good enough.</span>
<a name="l00077"></a>00077 <span class="comment"> * Make sure that a UFile opened with "rw" can be used after using</span>
<a name="l00078"></a>00078 <span class="comment">    u_fflush with a u_frewind.</span>
<a name="l00079"></a>00079 <span class="comment"> * scanf(%i) should detect what type of number to use.</span>
<a name="l00080"></a>00080 <span class="comment"> * Add more testing of the alternate format, %#</span>
<a name="l00081"></a>00081 <span class="comment"> * Look at newline handling of fputs/puts</span>
<a name="l00082"></a>00082 <span class="comment"> * Think more about codeunit/codepoint error handling/support in %S,%s,%C,%c,%[]</span>
<a name="l00083"></a>00083 <span class="comment"> * Complete the file documentation with proper doxygen formatting.</span>
<a name="l00084"></a>00084 <span class="comment">    See http://oss.software.ibm.com/pipermail/icu/2003-July/005647.html</span>
<a name="l00085"></a>00085 <span class="comment">*/</span>
<a name="l00086"></a>00086 
<a name="l00203"></a><a class="code" href="ustdio_8h.html#d2abb9cdcd84b75fef26348fd540e7c9">00203</a> <span class="preprocessor">#define U_EOF 0xFFFF</span>
<a name="l00204"></a>00204 <span class="preprocessor"></span>
<a name="l00206"></a><a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">00206</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a> <a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>;
<a name="l00207"></a>00207 
<a name="l00208"></a>00208 <span class="preprocessor">#ifndef U_HIDE_DRAFT_API</span>
<a name="l00209"></a>00209 <span class="preprocessor"></span>
<a name="l00214"></a><a class="code" href="ustdio_8h.html#9e9aaa695e1c052127aae9a75f082155">00214</a> <span class="keyword">typedef</span> <span class="keyword">enum</span> { 
<a name="l00215"></a>00215    U_READ = 1,
<a name="l00216"></a>00216    U_WRITE = 2, 
<a name="l00217"></a>00217    U_READWRITE =3  <span class="comment">/* == (U_READ | U_WRITE) */</span> 
<a name="l00218"></a>00218 } <a class="code" href="ustdio_8h.html#9e9aaa695e1c052127aae9a75f082155">UFileDirection</a>;
<a name="l00219"></a>00219 
<a name="l00220"></a>00220 <span class="preprocessor">#endif </span><span class="comment">/* U_HIDE_DRAFT_API */</span>
<a name="l00221"></a>00221 
<a name="l00239"></a>00239 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>* <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00240"></a>00240 <a class="code" href="ustdio_8h.html#921519fbcb17c3e3c020b2871afb8b23">u_fopen</a>(<span class="keyword">const</span> <span class="keywordtype">char</span>    *filename,
<a name="l00241"></a>00241     <span class="keyword">const</span> <span class="keywordtype">char</span>    *perm,
<a name="l00242"></a>00242     <span class="keyword">const</span> <span class="keywordtype">char</span>    *locale,
<a name="l00243"></a>00243     <span class="keyword">const</span> <span class="keywordtype">char</span>    *codepage);
<a name="l00244"></a>00244 
<a name="l00258"></a>00258 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>* <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00259"></a>00259 <a class="code" href="ustdio_8h.html#97b3a4c3639271188f378bf87e2c957d">u_finit</a>(FILE        *f,
<a name="l00260"></a>00260     <span class="keyword">const</span> <span class="keywordtype">char</span>    *locale,
<a name="l00261"></a>00261     <span class="keyword">const</span> <span class="keywordtype">char</span>    *codepage);
<a name="l00262"></a>00262 
<a name="l00277"></a>00277 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>* <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00278"></a>00278 <a class="code" href="ustdio_8h.html#8dbdc3a52164c1f207d7731105b85982">u_fstropen</a>(<a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>      *stringBuf,
<a name="l00279"></a>00279            <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a>     capacity,
<a name="l00280"></a>00280            <span class="keyword">const</span> <span class="keywordtype">char</span> *locale);
<a name="l00281"></a>00281 
<a name="l00287"></a>00287 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <span class="keywordtype">void</span> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00288"></a>00288 <a class="code" href="ustdio_8h.html#b3241cbe6c98cc23a1a164b19d9f2d84">u_fclose</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a> *file);
<a name="l00289"></a>00289 
<a name="l00298"></a>00298 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="umachine_8h.html#349ef00011f20ccd1d3b424445681aa5">UBool</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00299"></a>00299 <a class="code" href="ustdio_8h.html#ebc8584d59bee9aa7a1d44391fb329e4">u_feof</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>  *f);
<a name="l00300"></a>00300 
<a name="l00309"></a>00309 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <span class="keywordtype">void</span> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00310"></a>00310 <a class="code" href="ustdio_8h.html#b80062155b58334f8f85e6b5b4e93521">u_fflush</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a> *file);
<a name="l00311"></a>00311 
<a name="l00317"></a>00317 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <span class="keywordtype">void</span>
<a name="l00318"></a>00318 <a class="code" href="ustdio_8h.html#f58b8c15c4ef981e1b7cc45e39eb75b8">u_frewind</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a> *file);
<a name="l00319"></a>00319 
<a name="l00326"></a>00326 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> FILE* <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00327"></a>00327 <a class="code" href="ustdio_8h.html#254f86265efa9b9e8e9683aa5bccdb7c">u_fgetfile</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a> *f);
<a name="l00328"></a>00328 
<a name="l00329"></a>00329 <span class="preprocessor">#if !UCONFIG_NO_FORMATTING</span>
<a name="l00330"></a>00330 <span class="preprocessor"></span>
<a name="l00339"></a>00339 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00340"></a>00340 <a class="code" href="ustdio_8h.html#708f57f3b9560e13e96d5af5753d8633">u_fgetlocale</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a> *file);
<a name="l00341"></a>00341 
<a name="l00350"></a>00350 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00351"></a>00351 <a class="code" href="ustdio_8h.html#db774e3149c9a0da75bda57a71098935">u_fsetlocale</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>      *file,
<a name="l00352"></a>00352              <span class="keyword">const</span> <span class="keywordtype">char</span> *locale);
<a name="l00353"></a>00353 
<a name="l00354"></a>00354 <span class="preprocessor">#endif</span>
<a name="l00355"></a>00355 <span class="preprocessor"></span>
<a name="l00365"></a>00365 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00366"></a>00366 <a class="code" href="ustdio_8h.html#877318646295602392de8a858953e8ff">u_fgetcodepage</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a> *file);
<a name="l00367"></a>00367 
<a name="l00383"></a>00383 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00384"></a>00384 <a class="code" href="ustdio_8h.html#7381b833b6835034008985da1fb9acc2">u_fsetcodepage</a>(<span class="keyword">const</span> <span class="keywordtype">char</span>   *codepage,
<a name="l00385"></a>00385                <a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>        *file);
<a name="l00386"></a>00386 
<a name="l00387"></a>00387 
<a name="l00394"></a>00394 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="ucnv__err_8h.html#0c2dcfbf71ad577f5285869e1ceb26b1">UConverter</a>* <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a> <a class="code" href="ustdio_8h.html#1a03b63365f381fa3baf030d7dfc9392">u_fgetConverter</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a> *f);
<a name="l00395"></a>00395 
<a name="l00396"></a>00396 <span class="preprocessor">#if !UCONFIG_NO_FORMATTING</span>
<a name="l00397"></a>00397 <span class="preprocessor"></span>
<a name="l00398"></a>00398 <span class="comment">/* Output functions */</span>
<a name="l00399"></a>00399 
<a name="l00408"></a>00408 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00409"></a>00409 <a class="code" href="ustdio_8h.html#ace6d50c4e497147fa383f36619b6691">u_fprintf</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>         *f,
<a name="l00410"></a>00410           <span class="keyword">const</span> <span class="keywordtype">char</span>    *patternSpecification,
<a name="l00411"></a>00411           ... );
<a name="l00412"></a>00412 
<a name="l00425"></a>00425 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00426"></a>00426 <a class="code" href="ustdio_8h.html#8e3b9d93385a94595f3bdf8d5e992427">u_vfprintf</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>        *f,
<a name="l00427"></a>00427            <span class="keyword">const</span> <span class="keywordtype">char</span>   *patternSpecification,
<a name="l00428"></a>00428            va_list      ap);
<a name="l00429"></a>00429 
<a name="l00438"></a>00438 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00439"></a>00439 <a class="code" href="ustdio_8h.html#391d37061930a7ad8c33df8d5432ce12">u_fprintf_u</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>       *f,
<a name="l00440"></a>00440             <span class="keyword">const</span> <a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a> *patternSpecification,
<a name="l00441"></a>00441             ... );
<a name="l00442"></a>00442 
<a name="l00455"></a>00455 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00456"></a>00456 <a class="code" href="ustdio_8h.html#67654b30a7ab9a23c61be373e35941f8">u_vfprintf_u</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>      *f,
<a name="l00457"></a>00457             <span class="keyword">const</span> <a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a> *patternSpecification,
<a name="l00458"></a>00458             va_list     ap);
<a name="l00459"></a>00459 <span class="preprocessor">#endif</span>
<a name="l00460"></a>00460 <span class="preprocessor"></span>
<a name="l00470"></a>00470 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00471"></a>00471 <a class="code" href="ustdio_8h.html#2e58874c36723ec9d01555f194c2116d">u_fputs</a>(<span class="keyword">const</span> <a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a> *s,
<a name="l00472"></a>00472         <a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>       *f);
<a name="l00473"></a>00473 
<a name="l00481"></a>00481 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="umachine_8h.html#09fff5c3b5a5b015324dc3ec3cf92809">UChar32</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00482"></a>00482 <a class="code" href="ustdio_8h.html#41f2cddc2702c115848b4fbdb48c3794">u_fputc</a>(<a class="code" href="umachine_8h.html#09fff5c3b5a5b015324dc3ec3cf92809">UChar32</a>  uc,
<a name="l00483"></a>00483         <a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>  *f);
<a name="l00484"></a>00484 
<a name="l00496"></a>00496 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00497"></a>00497 <a class="code" href="ustdio_8h.html#bb0b2946239f10903e865d910091514b">u_file_write</a>(<span class="keyword">const</span> <a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>    *ustring, 
<a name="l00498"></a>00498              <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a>        count, 
<a name="l00499"></a>00499              <a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>          *f);
<a name="l00500"></a>00500 
<a name="l00501"></a>00501 
<a name="l00502"></a>00502 <span class="comment">/* Input functions */</span>
<a name="l00503"></a>00503 <span class="preprocessor">#if !UCONFIG_NO_FORMATTING</span>
<a name="l00504"></a>00504 <span class="preprocessor"></span>
<a name="l00514"></a>00514 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00515"></a>00515 <a class="code" href="ustdio_8h.html#18444caddf68d1d161fa13b2edd1a9c5">u_fscanf</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>      *f,
<a name="l00516"></a>00516          <span class="keyword">const</span> <span class="keywordtype">char</span> *patternSpecification,
<a name="l00517"></a>00517          ... );
<a name="l00518"></a>00518 
<a name="l00532"></a>00532 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00533"></a>00533 <a class="code" href="ustdio_8h.html#3da72684541aecfe6c16a79b2fed8e79">u_vfscanf</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>         *f,
<a name="l00534"></a>00534           <span class="keyword">const</span> <span class="keywordtype">char</span>    *patternSpecification,
<a name="l00535"></a>00535           va_list        ap);
<a name="l00536"></a>00536 
<a name="l00546"></a>00546 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00547"></a>00547 <a class="code" href="ustdio_8h.html#d8fd4a3cd5b363c78773b1d5f06e712e">u_fscanf_u</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>        *f,
<a name="l00548"></a>00548            <span class="keyword">const</span> <a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>  *patternSpecification,
<a name="l00549"></a>00549            ... );
<a name="l00550"></a>00550 
<a name="l00564"></a>00564 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00565"></a>00565 <a class="code" href="ustdio_8h.html#9eeec18b5b99b4efb40887db70103e23">u_vfscanf_u</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>       *f,
<a name="l00566"></a>00566             <span class="keyword">const</span> <a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a> *patternSpecification,
<a name="l00567"></a>00567             va_list      ap);
<a name="l00568"></a>00568 <span class="preprocessor">#endif</span>
<a name="l00569"></a>00569 <span class="preprocessor"></span>
<a name="l00582"></a>00582 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>* <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00583"></a>00583 <a class="code" href="ustdio_8h.html#156e78f4160c0cde264158ab4f4f0081">u_fgets</a>(<a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>  *s,
<a name="l00584"></a>00584         <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> n,
<a name="l00585"></a>00585         <a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>  *f);
<a name="l00586"></a>00586 
<a name="l00596"></a>00596 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00597"></a>00597 <a class="code" href="ustdio_8h.html#fbed21b23ad994d4c4f83e4fe3e8a890">u_fgetc</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>   *f);
<a name="l00598"></a>00598 
<a name="l00609"></a>00609 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="umachine_8h.html#09fff5c3b5a5b015324dc3ec3cf92809">UChar32</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00610"></a>00610 <a class="code" href="ustdio_8h.html#48b9be06c611643848639fa4c22a16f4">u_fgetcx</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>  *f);
<a name="l00611"></a>00611 
<a name="l00623"></a>00623 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="umachine_8h.html#09fff5c3b5a5b015324dc3ec3cf92809">UChar32</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00624"></a>00624 <a class="code" href="ustdio_8h.html#65dcbb420a8f44e88b88df9004b0872d">u_fungetc</a>(<a class="code" href="umachine_8h.html#09fff5c3b5a5b015324dc3ec3cf92809">UChar32</a>   c,
<a name="l00625"></a>00625       <a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>        *f);
<a name="l00626"></a>00626 
<a name="l00637"></a>00637 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00638"></a>00638 <a class="code" href="ustdio_8h.html#9a30c366593b86dd8244fee5a1d51c0a">u_file_read</a>(<a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>        *chars, 
<a name="l00639"></a>00639         <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a>        count, 
<a name="l00640"></a>00640         <a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a>         *f);
<a name="l00641"></a>00641 
<a name="l00642"></a>00642 <span class="preprocessor">#if !UCONFIG_NO_TRANSLITERATION</span>
<a name="l00643"></a>00643 <span class="preprocessor"></span>
<a name="l00661"></a>00661 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="utrans_8h.html#1230b61c2370123b3f17d88dcdc13154">UTransliterator</a>* <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00662"></a>00662 <a class="code" href="ustdio_8h.html#155ccb79caa68fe03963576a27fcd3c7">u_fsettransliterator</a>(<a class="code" href="ustdio_8h.html#e90a658afbabf4e36c17dd4eeb95f1a6">UFILE</a> *file, <a class="code" href="ustdio_8h.html#9e9aaa695e1c052127aae9a75f082155">UFileDirection</a> direction,
<a name="l00663"></a>00663                      <a class="code" href="utrans_8h.html#1230b61c2370123b3f17d88dcdc13154">UTransliterator</a> *adopt, <a class="code" href="utypes_8h.html#3343c1c8a8377277046774691c98d78c">UErrorCode</a> *status);
<a name="l00664"></a>00664 
<a name="l00665"></a>00665 <span class="preprocessor">#endif</span>
<a name="l00666"></a>00666 <span class="preprocessor"></span>
<a name="l00667"></a>00667 
<a name="l00668"></a>00668 <span class="comment">/* Output string functions */</span>
<a name="l00669"></a>00669 <span class="preprocessor">#if !UCONFIG_NO_FORMATTING</span>
<a name="l00670"></a>00670 <span class="preprocessor"></span>
<a name="l00671"></a>00671 
<a name="l00682"></a>00682 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00683"></a>00683 <a class="code" href="ustdio_8h.html#762fa0be07b80294eb9b5eb42bf063d6">u_sprintf</a>(<a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>       *buffer,
<a name="l00684"></a>00684         <span class="keyword">const</span> <span class="keywordtype">char</span>    *patternSpecification,
<a name="l00685"></a>00685         ... );
<a name="l00686"></a>00686 
<a name="l00703"></a>00703 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00704"></a>00704 <a class="code" href="ustdio_8h.html#778fe8a31eb14115b81dd61d22e4a462">u_snprintf</a>(<a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>      *buffer,
<a name="l00705"></a>00705         <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a>       count,
<a name="l00706"></a>00706         <span class="keyword">const</span> <span class="keywordtype">char</span>    *patternSpecification,
<a name="l00707"></a>00707         ... );
<a name="l00708"></a>00708 
<a name="l00722"></a>00722 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00723"></a>00723 <a class="code" href="ustdio_8h.html#7f33b7a3c43e29759e26db2a36e9798c">u_vsprintf</a>(<a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>      *buffer,
<a name="l00724"></a>00724         <span class="keyword">const</span> <span class="keywordtype">char</span>    *patternSpecification,
<a name="l00725"></a>00725         va_list        ap);
<a name="l00726"></a>00726 
<a name="l00746"></a>00746 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00747"></a>00747 <a class="code" href="ustdio_8h.html#ae7e44a6233404268c4ed2eebd661140">u_vsnprintf</a>(<a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>     *buffer,
<a name="l00748"></a>00748         <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a>       count,
<a name="l00749"></a>00749         <span class="keyword">const</span> <span class="keywordtype">char</span>    *patternSpecification,
<a name="l00750"></a>00750         va_list        ap);
<a name="l00751"></a>00751 
<a name="l00761"></a>00761 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00762"></a>00762 <a class="code" href="ustdio_8h.html#447b7713a97152de6b1e7ec609616343">u_sprintf_u</a>(<a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>      *buffer,
<a name="l00763"></a>00763         <span class="keyword">const</span> <a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>    *patternSpecification,
<a name="l00764"></a>00764         ... );
<a name="l00765"></a>00765 
<a name="l00781"></a>00781 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00782"></a>00782 <a class="code" href="ustdio_8h.html#4fd62d6127dba051060ec52b72a666cb">u_snprintf_u</a>(<a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>     *buffer,
<a name="l00783"></a>00783         <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a>        count,
<a name="l00784"></a>00784         <span class="keyword">const</span> <a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>    *patternSpecification,
<a name="l00785"></a>00785         ... );
<a name="l00786"></a>00786 
<a name="l00800"></a>00800 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00801"></a>00801 <a class="code" href="ustdio_8h.html#a8d03f1123ca9b69f385b83da027fee9">u_vsprintf_u</a>(<a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>     *buffer,
<a name="l00802"></a>00802         <span class="keyword">const</span> <a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>    *patternSpecification,
<a name="l00803"></a>00803         va_list        ap);
<a name="l00804"></a>00804 
<a name="l00824"></a>00824 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00825"></a>00825 <a class="code" href="ustdio_8h.html#2326d587dca4871d238a0d64e05ea7a4">u_vsnprintf_u</a>(<a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a> *buffer,
<a name="l00826"></a>00826         <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a>         count,
<a name="l00827"></a>00827         <span class="keyword">const</span> <a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>     *patternSpecification,
<a name="l00828"></a>00828         va_list         ap);
<a name="l00829"></a>00829 
<a name="l00830"></a>00830 <span class="comment">/* Input string functions */</span>
<a name="l00831"></a>00831 
<a name="l00842"></a>00842 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00843"></a>00843 <a class="code" href="ustdio_8h.html#601b0c316dedaaaeb085d75b46d65b94">u_sscanf</a>(<span class="keyword">const</span> <a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>   *buffer,
<a name="l00844"></a>00844         <span class="keyword">const</span> <span class="keywordtype">char</span>     *patternSpecification,
<a name="l00845"></a>00845         ... );
<a name="l00846"></a>00846 
<a name="l00861"></a>00861 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00862"></a>00862 <a class="code" href="ustdio_8h.html#60af3fad0a0d8af5cb32dd0947a231b4">u_vsscanf</a>(<span class="keyword">const</span> <a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>  *buffer,
<a name="l00863"></a>00863         <span class="keyword">const</span> <span class="keywordtype">char</span>     *patternSpecification,
<a name="l00864"></a>00864         va_list        ap);
<a name="l00865"></a>00865 
<a name="l00876"></a>00876 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00877"></a>00877 <a class="code" href="ustdio_8h.html#a12f4423de68758e0363c877753a8091">u_sscanf_u</a>(<span class="keyword">const</span> <a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>  *buffer,
<a name="l00878"></a>00878         <span class="keyword">const</span> <a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>     *patternSpecification,
<a name="l00879"></a>00879         ... );
<a name="l00880"></a>00880 
<a name="l00895"></a>00895 <a class="code" href="umachine_8h.html#41691e68155dca13bc1f020fa30dac82">U_DRAFT</a> <a class="code" href="platform_8h.html#b1967d8591af1a4e48c37fd2b0f184d0">int32_t</a> <a class="code" href="platform_8h.html#72bf6d8ec0640a37b1915e5d853b2016">U_EXPORT2</a>
<a name="l00896"></a>00896 <a class="code" href="ustdio_8h.html#0f79754941078285383dfc74602edf43">u_vsscanf_u</a>(<span class="keyword">const</span> <a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a> *buffer,
<a name="l00897"></a>00897         <span class="keyword">const</span> <a class="code" href="umachine_8h.html#6bb9fad572d65b305324ef288165e2ac">UChar</a>     *patternSpecification,
<a name="l00898"></a>00898         va_list         ap);
<a name="l00899"></a>00899 
<a name="l00900"></a>00900 <span class="preprocessor">#endif</span>
<a name="l00901"></a>00901 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00902"></a>00902 <span class="preprocessor"></span>
<a name="l00903"></a>00903 
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Sep 14 12:59:21 2007 for ICU 3.8 by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>
</html>