system_util.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*
  2. * Copyright (c) 2018 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file system util interface
  8. */
  9. #ifndef __SYSTEM_UTIL_H__
  10. #define __SYSTEM_UTIL_H__
  11. /**
  12. * @defgroup sys_util_apis System Util APIs
  13. * @ingroup system_apis
  14. * @{
  15. */
  16. /**
  17. * @brief hex to string.
  18. *
  19. * This routine provide function hex to string
  20. *
  21. * @param hex point to hex value
  22. * @param len len of hex value
  23. * @param str pointer to store string value
  24. *
  25. * @retval N/A
  26. */
  27. void HEXTOSTR(char *hex, int len, char *str);
  28. /**
  29. * @brief UTF8 to GBK.
  30. *
  31. * This routine provide function UTF8 to GBK
  32. *
  33. * @param lpUTF8Str point to utf8 value
  34. * @param lpGBKStr pointer to store GBK value
  35. * @param len len of UTF8 value
  36. *
  37. * @retval 0 success , other failed
  38. */
  39. int UTF8TOGBK(unsigned char * lpUTF8Str,unsigned char * lpGBKStr, int len);
  40. /**
  41. * @brief GBK to UTF8 .
  42. *
  43. * This routine provide function GBK to UTF8
  44. *
  45. * @param lpGBKStr point to GBK value
  46. * @param lpUTF8Str pointer to store UTF8 value
  47. * @param len len of GBK value
  48. *
  49. * @retval 0 success , other failed
  50. */
  51. int GBKTOUTF8(unsigned char * lpGBKStr, unsigned char * lpUTF8Str, int len);
  52. /**
  53. * @brief unicode to mbcs.
  54. *
  55. * This routine provide function convert unicode to mbcs.
  56. *
  57. * @param src_ucs pointer to store unicode value
  58. * @param src_len len of unicode value
  59. * @param dst_mbcs len of mbcs value
  60. * @param dst_len mbcs value length
  61. * @param nation_id nation id
  62. *
  63. * @retval 0 success , other failed
  64. */
  65. int UNICODETOMBCS(unsigned short *src_ucs, int src_len, unsigned char*dst_mbcs, int *dst_len, int nation_id);
  66. /**
  67. * @brief mbcs to unicode.
  68. *
  69. * This routine provide function convert mbcs to unicode.
  70. *
  71. * @param src_mbcs pointer to store mbcs value
  72. * @param src_len len of mbcs value
  73. * @param dst_uni len of unicode value
  74. * @param dst_len unicode value length
  75. * @param nation_id nation id
  76. *
  77. * @retval 0 success , other failed
  78. */
  79. int MBCSTOUNICODE(unsigned char *src_mbcs, int src_len, unsigned short *dst_uni, int *dst_len, int nation_id);
  80. /**
  81. * @brief utf8 to unicode.
  82. *
  83. * This routine provide function convert utf8 to unicode.
  84. *
  85. * @param utf8 pointer to store utf8 value
  86. * @param utf8_len len of UTF8 value
  87. * @param unicode point to unicode value
  88. * @param punicode_len unicode value length
  89. *
  90. * @retval 0 success , other failed
  91. */
  92. int UTF8TOUNICODE(char *utf8, int utf8_len, unsigned short *unicode, int *punicode_len);
  93. /**
  94. * @brief unicode to utf8.
  95. *
  96. * This routine provide function convert unicode to utf8.
  97. *
  98. * @param unicode point to unicode value
  99. * @param unicode_len unicode value length
  100. * @param utf8 pointer to store utf8 value
  101. * @param putf8_len len of UTF8 value
  102. *
  103. * @retval 0 success , other failed
  104. */
  105. int UNICODETOUTF8(unsigned short *unicode, int unicode_len, char *utf8, int *putf8_len);
  106. /**
  107. * @brief string to unix time stamp
  108. *
  109. * This routine provide get unix time stamp from string
  110. *
  111. * @param string string of "2017-09-16 21:00:00"
  112. *
  113. * @retval unix time stamp
  114. */
  115. int STRING_TO_UNIX_TIME_STAMP(char * string);
  116. /**
  117. * @brief get unix time stamp from string
  118. *
  119. * This routine provide get unix time stamp from string
  120. *
  121. * @param string string of "2017-09-16 21:00:00"
  122. *
  123. * @retval unix time stamp
  124. */
  125. int GET_UNIX_TIME_STAMP(char *string);
  126. /**
  127. * @} end defgroup sys_util_apis
  128. */
  129. #endif