Home | History | Annotate | Download | only in io
      1 // Copyright (C) 2016 and later: Unicode, Inc. and others.
      2 // License & terms of use: http://www.unicode.org/copyright.html
      3 /*
      4 ******************************************************************************
      5 *
      6 *   Copyright (C) 1998-2014, International Business Machines
      7 *   Corporation and others.  All Rights Reserved.
      8 *
      9 ******************************************************************************
     10 *
     11 * File uscanf.h
     12 *
     13 * Modification History:
     14 *
     15 *   Date        Name        Description
     16 *   12/02/98    stephen        Creation.
     17 *   03/13/99    stephen     Modified for new C API.
     18 ******************************************************************************
     19 */
     20 
     21 #ifndef USCANF_H
     22 #define USCANF_H
     23 
     24 #include "unicode/utypes.h"
     25 
     26 #if !UCONFIG_NO_FORMATTING && !UCONFIG_NO_CONVERSION
     27 
     28 #include "unicode/ustdio.h"
     29 
     30 U_CFUNC int32_t
     31 u_scanf_parse(UFILE     *f,
     32             const UChar *patternSpecification,
     33             va_list     ap);
     34 
     35 #endif /* #if !UCONFIG_NO_FORMATTING */
     36 
     37 #endif
     38 
     39