You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
3.9KB

  1. /*
  2. * Copyright (c) 2007 Mans Rullgard
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #ifndef AVUTIL_AVSTRING_H
  21. #define AVUTIL_AVSTRING_H
  22. #include <stddef.h>
  23. /**
  24. * Return non-zero if pfx is a prefix of str. If it is, *ptr is set to
  25. * the address of the first character in str after the prefix.
  26. *
  27. * @param str input string
  28. * @param pfx prefix to test
  29. * @param ptr updated if the prefix is matched inside str
  30. * @return non-zero if the prefix matches, zero otherwise
  31. */
  32. int av_strstart(const char *str, const char *pfx, const char **ptr);
  33. /**
  34. * Return non-zero if pfx is a prefix of str independent of case. If
  35. * it is, *ptr is set to the address of the first character in str
  36. * after the prefix.
  37. *
  38. * @param str input string
  39. * @param pfx prefix to test
  40. * @param ptr updated if the prefix is matched inside str
  41. * @return non-zero if the prefix matches, zero otherwise
  42. */
  43. int av_stristart(const char *str, const char *pfx, const char **ptr);
  44. /**
  45. * Locate the first case-independent occurrence in the string s1 of
  46. * the string s2. A zero-length string s2 is considered to match at
  47. * the start of s1.
  48. *
  49. * This function is a case-insensitive version of the standard strstr().
  50. *
  51. * @param s1 string to search in
  52. * @param s2 string to search for
  53. * @return pointer to the located match within s1 or a null pointer if no match
  54. */
  55. char *av_stristr(const char *s1, const char *s2);
  56. /**
  57. * Copy the string src to dst, but no more than size - 1 bytes, and
  58. * null-terminate dst.
  59. *
  60. * This function is the same as BSD strlcpy().
  61. *
  62. * @param dst destination buffer
  63. * @param src source string
  64. * @param size size of destination buffer
  65. * @return the length of src
  66. *
  67. * WARNING: since the return value is the length of src, src absolutely
  68. * _must_ be a properly 0-terminated string, otherwise this will read beyond
  69. * the end of the buffer and possibly crash.
  70. */
  71. size_t av_strlcpy(char *dst, const char *src, size_t size);
  72. /**
  73. * Append the string src to the string dst, but to a total length of
  74. * no more than size - 1 bytes, and null-terminate dst.
  75. *
  76. * This function is similar to BSD strlcat(), but differs when
  77. * size <= strlen(dst).
  78. *
  79. * @param dst destination buffer
  80. * @param src source string
  81. * @param size size of destination buffer
  82. * @return the total length of src and dst
  83. *
  84. * WARNING: since the return value use the length of src and dst, these absolutely
  85. * _must_ be a properly 0-terminated strings, otherwise this will read beyond
  86. * the end of the buffer and possibly crash.
  87. */
  88. size_t av_strlcat(char *dst, const char *src, size_t size);
  89. /**
  90. * Append output to a string, according to a format. Never write out of
  91. * the destination buffer, and always put a terminating 0 within
  92. * the buffer.
  93. * @param dst destination buffer (string to which the output is
  94. * appended)
  95. * @param size total size of the destination buffer
  96. * @param fmt printf-compatible format string, specifying how the
  97. * following parameters are used
  98. * @return the length of the string that would have been generated
  99. * if enough space had been available
  100. */
  101. size_t av_strlcatf(char *dst, size_t size, const char *fmt, ...);
  102. /**
  103. * Convert a number to a av_malloced string.
  104. */
  105. char *av_d2str(double d);
  106. #endif /* AVUTIL_AVSTRING_H */