1 /*
2 **********************************************************************
3 * Copyright (C) 1998-2004, International Business Machines Corporation
4 * and others.  All Rights Reserved.
5 **********************************************************************
6 *
7 * File uprint.h
8 *
9 * Modification History:
10 *
11 *   Date        Name        Description
12 *   06/14/99    stephen     Creation.
13 *******************************************************************************
14 */
15 
16 #ifndef UPRINT_H
17 #define UPRINT_H 1
18 
19 #include <stdio.h>
20 
21 #include "unicode/utypes.h"
22 
23 /* Print a ustring to the specified FILE* in the default codepage */
24 U_CFUNC void uprint(const UChar *s, FILE *f, UErrorCode *status);
25 
26 #endif /* ! UPRINT_H */
27