]>
Commit | Line | Data |
---|---|---|
b75a7d8f | 1 | /* |
f3c0d7a5 A |
2 | ******************************************************************************** |
3 | * © 2016 and later: Unicode, Inc. and others. | |
4 | * License & terms of use: http://www.unicode.org/copyright.html#License | |
5 | ******************************************************************************** | |
b75a7d8f | 6 | ********************************************************************** |
374ca955 | 7 | * Copyright (C) 1998-2004, International Business Machines Corporation |
b75a7d8f A |
8 | * and others. All Rights Reserved. |
9 | ********************************************************************** | |
10 | * | |
11 | * File uprint.h | |
12 | * | |
13 | * Modification History: | |
14 | * | |
15 | * Date Name Description | |
16 | * 06/14/99 stephen Creation. | |
17 | ******************************************************************************* | |
18 | */ | |
19 | ||
20 | #ifndef UPRINT_H | |
21 | #define UPRINT_H 1 | |
22 | ||
23 | #include <stdio.h> | |
24 | ||
25 | #include "unicode/utypes.h" | |
26 | ||
27 | /* Print a ustring to the specified FILE* in the default codepage */ | |
374ca955 | 28 | U_CFUNC void uprint(const UChar *s, FILE *f, UErrorCode *status); |
b75a7d8f A |
29 | |
30 | #endif /* ! UPRINT_H */ |