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