]> git.saurik.com Git - apple/icu.git/blame - icuSources/io/uscanf.h
ICU-57166.0.1.tar.gz
[apple/icu.git] / icuSources / io / uscanf.h
CommitLineData
b75a7d8f 1/*
374ca955 2******************************************************************************
b75a7d8f 3*
b331163b 4* Copyright (C) 1998-2014, International Business Machines
b75a7d8f
A
5* Corporation and others. All Rights Reserved.
6*
374ca955 7******************************************************************************
b75a7d8f 8*
374ca955 9* File uscanf.h
b75a7d8f
A
10*
11* Modification History:
12*
13* Date Name Description
374ca955
A
14* 12/02/98 stephen Creation.
15* 03/13/99 stephen Modified for new C API.
16******************************************************************************
b75a7d8f
A
17*/
18
374ca955
A
19#ifndef USCANF_H
20#define USCANF_H
b75a7d8f
A
21
22#include "unicode/utypes.h"
23
b331163b 24#if !UCONFIG_NO_FORMATTING && !UCONFIG_NO_CONVERSION
b75a7d8f 25
374ca955 26#include "unicode/ustdio.h"
b75a7d8f 27
374ca955
A
28U_CFUNC int32_t
29u_scanf_parse(UFILE *f,
30 const UChar *patternSpecification,
31 va_list ap);
b75a7d8f
A
32
33#endif /* #if !UCONFIG_NO_FORMATTING */
34
35#endif
374ca955 36