qdf_str.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /*
  2. * Copyright (c) 2018 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /**
  19. * DOC: qdf_str
  20. * QCA driver framework (QDF) string APIs.
  21. */
  22. #ifndef __QDF_STR_H
  23. #define __QDF_STR_H
  24. #include "i_qdf_str.h"
  25. #include "qdf_types.h"
  26. /**
  27. * qdf_is_space() - check if @c is a whitespace character
  28. * @c: the character to check
  29. *
  30. * Whitespace characters include HT, LF, VT, FF, CR, space, and nbsp
  31. *
  32. * Return: true if @ is a whitespace character
  33. */
  34. static inline bool qdf_is_space(char c)
  35. {
  36. return __qdf_is_space(c);
  37. }
  38. /**
  39. * qdf_str_cmp - Compare two strings
  40. * @str1: First string
  41. * @str2: Second string
  42. * Return:
  43. * 0 - strings are equal
  44. * <0 - str1 sorts lexicographically before str2
  45. * >0 - str1 sorts lexicographically after str2
  46. */
  47. static inline int32_t qdf_str_cmp(const char *str1, const char *str2)
  48. {
  49. return __qdf_str_cmp(str1, str2);
  50. }
  51. /**
  52. * qdf_str_dup() - duplicate null-terminated string @src
  53. * @dest: double pointer to be populated
  54. * @src: the null-terminated string to be duplicated
  55. *
  56. * @dest must be freed using qdf_mem_free() to avoid memory leaks.
  57. *
  58. * Return: QDF_STATUS; @dest set to NULL on failure, a valid address on success
  59. */
  60. QDF_STATUS qdf_str_dup(char **dest, const char *src);
  61. /**
  62. * qdf_str_eq - compare two null-terminated strings for equality
  63. * @left: the string left of the equality
  64. * @right: the string right of the equality
  65. *
  66. * This is a thin wrapper over `if (strcmp(left, right) == 0)` for clarity.
  67. *
  68. * Return: true if strings are equal
  69. */
  70. static inline bool qdf_str_eq(const char *left, const char *right)
  71. {
  72. return qdf_str_cmp(left, right) == 0;
  73. }
  74. /**
  75. * qdf_str_lcopy - Bounded copy from one string to another
  76. * @dest: destination string
  77. * @src: source string
  78. * @dest_size: max number of bytes to copy (incl. null terminator)
  79. *
  80. * If the return value is >= @dest_size, @dest has been truncated.
  81. *
  82. * Return: length of @src
  83. */
  84. static inline qdf_size_t
  85. qdf_str_lcopy(char *dest, const char *src, uint32_t dest_size)
  86. {
  87. return __qdf_str_lcopy(dest, src, dest_size);
  88. }
  89. /**
  90. * qdf_str_left_trim() - Trim any leading whitespace from @str
  91. * @str: the string to trim
  92. *
  93. * Return: A pointer to the first non-space character in @str
  94. */
  95. static inline const char *qdf_str_left_trim(const char *str)
  96. {
  97. return __qdf_str_left_trim(str);
  98. }
  99. /**
  100. * qdf_str_len() - returns the length of a null-terminated string
  101. * @str: input string
  102. *
  103. * Return: length of @str (without null terminator)
  104. */
  105. static inline qdf_size_t qdf_str_len(const char *str)
  106. {
  107. return __qdf_str_len(str);
  108. }
  109. /**
  110. * qdf_str_right_trim() - Trim any trailing whitespace from @str
  111. * @str: the string to trim
  112. *
  113. * Note: The first trailing whitespace character is replaced with a
  114. * null-terminator
  115. *
  116. * Return: None
  117. */
  118. void qdf_str_right_trim(char *str);
  119. /**
  120. * qdf_str_trim() - Trim any leading/trailing whitespace from @str
  121. * @str: the string to trim
  122. *
  123. * Note: The first trailing whitespace character is replaced with a
  124. * null-terminator
  125. *
  126. * Return: A pointer to the first non-space character in @str
  127. */
  128. static inline char *qdf_str_trim(char *str)
  129. {
  130. return __qdf_str_trim(str);
  131. }
  132. /**
  133. * qdf_str_nlen() - Get string length up to @limit characters
  134. * @str: the string to get the length of
  135. * @limit: the maximum number of characters to check
  136. *
  137. * Return: the less of @limit or the length of @str (without null terminator)
  138. */
  139. static inline qdf_size_t qdf_str_nlen(const char *str, qdf_size_t limit)
  140. {
  141. return __qdf_str_nlen(str, limit);
  142. }
  143. #endif /* __QDF_STR_H */