rbutil.h 895 B

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