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

« back to all changes in this revision

Viewing changes to source/tools/toolutil/unewdata.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2005-05-21 22:44:31 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: package-import@ubuntu.com-20050521224431-r7rktfhnu1n4tf1g
Tags: 2.1-2.1
Rename icu-doc to icu21-doc. icu-doc is built by the icu28 package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
 
81
81
/** @memo Write a block of bytes to the file. */
82
82
U_CAPI void U_EXPORT2
83
 
udata_writeBlock(UNewDataMemory *pData, const void *s, UTextOffset length);
 
83
udata_writeBlock(UNewDataMemory *pData, const void *s, int32_t length);
84
84
 
85
85
/** @memo Write a block of arbitrary padding bytes to the file. */
86
86
U_CAPI void U_EXPORT2
87
 
udata_writePadding(UNewDataMemory *pData, UTextOffset length);
 
87
udata_writePadding(UNewDataMemory *pData, int32_t length);
88
88
 
89
89
/** @memo Write a <code>char*</code> string of platform "invariant characters" to the file. */
90
90
U_CAPI void U_EXPORT2
91
 
udata_writeString(UNewDataMemory *pData, const char *s, UTextOffset length);
 
91
udata_writeString(UNewDataMemory *pData, const char *s, int32_t length);
92
92
 
93
93
/** @memo Write a <code>UChar*</code> string of Unicode character code units to the file. */
94
94
U_CAPI void U_EXPORT2
95
 
udata_writeUString(UNewDataMemory *pData, const UChar *s, UTextOffset length);
 
95
udata_writeUString(UNewDataMemory *pData, const UChar *s, int32_t length);
96
96
 
97
97
 
98
98
/*