uprint.h revision c73f511526464f8e56c242df80552e9b0d94ae3d
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 */
24U_CFUNC void uprint(const UChar *s, FILE *f, UErrorCode *status);
25
26#endif /* ! UPRINT_H */
27