Lines Matching full:char
11 char *strcat(char *s1, const char *s2);
12 char *strncat(char *s1, const char *s2, size_t n);
13 char *strchr(const char *s, int c);
14 char *strrchr(const char *s, int c);
15 int strcmp(const char *s1, const char *s2);
16 int strncmp(const char *s1, const char *s2, size_t n);
17 char *strcpy(char *s1, const char *s2);
18 char *stpcpy(char *s1, const char *s2);
19 char *strncpy(char *s1, const char *s2, size_t n);
20 size_t strlen(const char *s);
21 char *strpbrk(const char *s1, const char *s2);
22 size_t strspn(const char *s1, const char *s2);
23 double strtod(const char *nptr, char **endptr);
24 float strtof(const char *nptr, char **endptr);
25 long double strtold(const char *nptr, char **endptr);
26 long int strtol(const char *nptr, char **endptr, int base);
27 long long int strtoll(const char *nptr, char **endptr, int base);
28 unsigned long int strtoul(const char *nptr, char **endptr, int base);
29 unsigned long long int strtoull(const char *nptr, char **endptr, int base);
51 char *t6(char *x) { return strcat(x, ""); }
55 char *t7(char *x) { return strncat(x, "", 1); }
59 char *t8(void) { return strchr("hello, world", 'w'); }
63 char *t9(void) { return strrchr("hello, world", 'w'); }
75 char *t12(char *x) { return strcpy(x, "foo"); }
79 char *t13(char *x) { return stpcpy(x, "foo"); }
83 char *t14(char *x) { return strncpy(x, "foo", 3); }
91 char *t16(char *x) { return strpbrk(x, ""); }
95 size_t t17(char *x) { return strspn(x, ""); }
99 double t18(char **x) { return strtod("123.4", x); }
103 float t19(char **x) { return strtof("123.4", x); }
107 long double t20(char **x) { return strtold("123.4", x); }
111 long int t21(char **x) { return strtol("1234", x, 10); }
115 long int t22(char **x) { return strtoll("1234", x, 10); }
119 long int t23(char **x) { return strtoul("1234", x, 10); }
123 long int t24(char **x) { return strtoull("1234", x, 10); }