olibc/src/tests/string/strspn.c

12 lines
229 B
C
Raw Normal View History

2021-12-19 08:35:56 +00:00
// This is test program for strspn function from string.h
#include <string.h>
#include <stdio.h>
int main() {
char s1[] = "HELLO, this won't be counted";
char s2[] = "EHLOL";
printf("%d\n", strspn(s1, s2));
2021-12-19 08:35:56 +00:00
return 0;
}