MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / skip_spaces

Function skip_spaces

ffserver.c:1205–1212  ·  view source on GitHub ↗

XXX: factorize in utils.c ? */ XXX: take care with different space meaning */

Source from the content-addressed store, hash-verified

1203/* XXX: factorize in utils.c ? */
1204/* XXX: take care with different space meaning */
1205static void skip_spaces(const char **pp)
1206{
1207 const char *p;
1208 p = *pp;
1209 while (*p == ' ' || *p == '\t')
1210 p++;
1211 *pp = p;
1212}
1213
1214static void get_word(char *buf, int buf_size, const char **pp)
1215{

Callers 1

get_wordFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected