home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Programming / ICU / src / icu / source / samples / date / uprint.h < prev   
Encoding:
C/C++ Source or Header  |  1999-10-19  |  1.1 KB  |  32 lines

  1. /*
  2. *******************************************************************************
  3. *                                                                             *
  4. * COPYRIGHT:                                                                  *
  5. *   (C) Copyright International Business Machines Corporation, 1998, 1999     *
  6. *   Licensed Material - Program-Property of IBM - All Rights Reserved.        *
  7. *   US Government Users Restricted Rights - Use, duplication, or disclosure   *
  8. *   restricted by GSA ADP Schedule Contract with IBM Corp.                    *
  9. *                                                                             *
  10. *******************************************************************************
  11. *
  12. * File uprint.h
  13. *
  14. * Modification History:
  15. *
  16. *   Date        Name        Description
  17. *   06/14/99    stephen     Creation.
  18. *******************************************************************************
  19. */
  20.  
  21. #ifndef UPRINT_H
  22. #define UPRINT_H 1
  23.  
  24. #include <stdio.h>
  25.  
  26. #include "utypes.h"
  27.  
  28. /* Print a ustring to the specified FILE* in the default codepage */
  29. U_CAPI void uprint(const UChar *s, FILE *f, UErrorCode *status);
  30.  
  31. #endif /* ! UPRINT_H */
  32.