comparison avstring.h @ 637:683a6dbdd2b2 libavutil

spelling/grammar/consistency review part III
author diego
date Wed, 28 Jan 2009 23:16:49 +0000
parents 8c48a1b999a3
children 81aecbb6bbb2
comparison
equal deleted inserted replaced
636:c04808220c83 637:683a6dbdd2b2
27 * Return non-zero if pfx is a prefix of str. If it is, *ptr is set to 27 * Return non-zero if pfx is a prefix of str. If it is, *ptr is set to
28 * the address of the first character in str after the prefix. 28 * the address of the first character in str after the prefix.
29 * 29 *
30 * @param str input string 30 * @param str input string
31 * @param pfx prefix to test 31 * @param pfx prefix to test
32 * @param ptr updated after the prefix in str in there is a match 32 * @param ptr updated if the prefix is matched inside str
33 * @return non-zero if the prefix matches, zero otherwise 33 * @return non-zero if the prefix matches, zero otherwise
34 */ 34 */
35 int av_strstart(const char *str, const char *pfx, const char **ptr); 35 int av_strstart(const char *str, const char *pfx, const char **ptr);
36 36
37 /** 37 /**
39 * it is, *ptr is set to the address of the first character in str 39 * it is, *ptr is set to the address of the first character in str
40 * after the prefix. 40 * after the prefix.
41 * 41 *
42 * @param str input string 42 * @param str input string
43 * @param pfx prefix to test 43 * @param pfx prefix to test
44 * @param ptr updated after the prefix in str in there is a match 44 * @param ptr updated if the prefix is matched inside str
45 * @return non-zero if the prefix matches, zero otherwise 45 * @return non-zero if the prefix matches, zero otherwise
46 */ 46 */
47 int av_stristart(const char *str, const char *pfx, const char **ptr); 47 int av_stristart(const char *str, const char *pfx, const char **ptr);
48 48
49 /** 49 /**