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