uprint.h 991 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. ********************************************************************************
  3. * © 2016 and later: Unicode, Inc. and others.
  4. * License & terms of use: http://www.unicode.org/copyright.html#License
  5. ********************************************************************************
  6. **********************************************************************
  7. * Copyright (C) 1998-2004, International Business Machines Corporation
  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. #ifndef UPRINT_H
  20. #define UPRINT_H 1
  21. #include <stdio.h>
  22. #include "unicode/utypes.h"
  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. #endif /* ! UPRINT_H */