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