Browse code

ffserver: steal SPACE_CHARS, remove one reason for internal.h that way

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

Michael Niedermayer authored on 2016/10/29 02:28:39
Showing 1 changed files
... ...
@@ -1273,6 +1273,8 @@ static void get_word(char *buf, int buf_size, const char **pp)
1273 1273
     const char *p;
1274 1274
     char *q;
1275 1275
 
1276
+#define SPACE_CHARS " \t\r\n"
1277
+
1276 1278
     p = *pp;
1277 1279
     p += strspn(p, SPACE_CHARS);
1278 1280
     q = buf;