fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / newlib / libc / argz / buf_findstr.c
blobaeb32a9436ca4572e6aaba5f8e834aeb8f291826
1 /* Copyright (C) 2002 by Red Hat, Incorporated. All rights reserved.
3 * Permission to use, copy, modify, and distribute this software
4 * is freely granted, provided that this notice is preserved.
5 */
7 #include <errno.h>
8 #include <sys/types.h>
9 #include <string.h>
10 #include <stdlib.h>
12 #include "buf_findstr.h"
14 /* Find string str in buffer buf of length buf_len. Point buf to character after string,
15 or set it to NULL if end of buffer is reached. Return 1 if found, 0 if not. */
16 int
17 _buf_findstr(const char *str, char **buf, size_t *buf_len)
19 int i = 0;
20 int j = 0;
22 for (i = 0; i < *buf_len; i++)
24 if (str[0] == (*buf)[i])
26 j = i;
27 while (str[j - i] && (str[j - i] == (*buf)[j])) j++;
28 if(str[j - i] == '\0')
30 *buf += j;
31 *buf_len -= j;
32 return 1;
37 if (i == *buf_len)
39 *buf += *buf_len;
40 *buf_len = 0;
43 return 0;