You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
223 B

// RUN: %clang %s -o %t && %run %t 2>&1
#include <assert.h>
#include <string.h>
int main(int argc, char **argv) {
size_t r;
char s1[] = "ad";
char s2[] = "cd";
r = strcspn(s1, s2);
assert(r == 1);
return 0;
}