~alinuxninja/nginx-edge/trunk

« back to all changes in this revision

Viewing changes to debian/modules/ngx_pagespeed/psol/include/third_party/icu/source/io/uscanf.h

  • Committer: Vivian
  • Date: 2015-12-04 18:20:11 UTC
  • Revision ID: git-v1:a36f2bc32e884f7473b3a47040e5411306144d7d
* Do not extract psol.tar.gz

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
******************************************************************************
3
 
*
4
 
*   Copyright (C) 1998-2004, International Business Machines
5
 
*   Corporation and others.  All Rights Reserved.
6
 
*
7
 
******************************************************************************
8
 
*
9
 
* File uscanf.h
10
 
*
11
 
* Modification History:
12
 
*
13
 
*   Date        Name        Description
14
 
*   12/02/98    stephen        Creation.
15
 
*   03/13/99    stephen     Modified for new C API.
16
 
******************************************************************************
17
 
*/
18
 
 
19
 
#ifndef USCANF_H
20
 
#define USCANF_H
21
 
 
22
 
#include "unicode/utypes.h"
23
 
 
24
 
#if !UCONFIG_NO_FORMATTING
25
 
 
26
 
#include "unicode/ustdio.h"
27
 
 
28
 
U_CFUNC int32_t
29
 
u_scanf_parse(UFILE     *f,
30
 
            const UChar *patternSpecification,
31
 
            va_list     ap);
32
 
 
33
 
#endif /* #if !UCONFIG_NO_FORMATTING */
34
 
 
35
 
#endif
36