~ubuntu-branches/ubuntu/gutsy/icu/gutsy-updates

« back to all changes in this revision

Viewing changes to source/samples/date/uprint.h

  • Committer: Package Import Robot
  • Author(s): Jay Berkenbilt
  • Date: 2005-11-19 11:29:31 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20051119112931-vcizkrp10tli4enw
Tags: 3.4-3
Explicitly build with g++ 3.4.  The current ICU fails its test suite
with 4.0 but not with 3.4.  Future versions should work properly with
4.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
**********************************************************************
3
 
* Copyright (C) 1998-2001, 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_CAPI void uprint(const UChar *s, FILE *f, UErrorCode *status);
25
 
 
26
 
#endif /* ! UPRINT_H */