]>
Commit | Line | Data |
---|---|---|
f3c0d7a5 A |
1 | // © 2016 and later: Unicode, Inc. and others. |
2 | // License & terms of use: http://www.unicode.org/copyright.html | |
b75a7d8f A |
3 | /* |
4 | ******************************************************************************* | |
5 | * | |
2ca993e8 | 6 | * Copyright (C) 1998-2016, International Business Machines |
b75a7d8f A |
7 | * Corporation and others. All Rights Reserved. |
8 | * | |
9 | ******************************************************************************* | |
10 | * | |
73c04bcf | 11 | * File rbutil.h |
b75a7d8f A |
12 | * |
13 | * Modification History: | |
14 | * | |
15 | * Date Name Description | |
16 | * 06/10/99 stephen Creation. | |
17 | ******************************************************************************* | |
18 | */ | |
19 | ||
20 | #ifndef UTIL_H | |
21 | #define UTIL_H 1 | |
22 | ||
2ca993e8 A |
23 | #include "unicode/utypes.h" |
24 | ||
b75a7d8f A |
25 | U_CDECL_BEGIN |
26 | ||
27 | void get_dirname(char *dirname, const char *filename); | |
28 | void get_basename(char *basename, const char *filename); | |
29 | int32_t itostr(char * buffer, int32_t i, uint32_t radix, int32_t pad); | |
2ca993e8 | 30 | |
b75a7d8f | 31 | U_CDECL_END |
b75a7d8f | 32 | |
2ca993e8 | 33 | #endif /* ! UTIL_H */ |