]> git.proxmox.com Git - rustc.git/blob - src/compiler-rt/test/sanitizer_common/TestCases/strcspn.c
New upstream version 1.19.0+dfsg3
[rustc.git] / src / compiler-rt / test / sanitizer_common / TestCases / strcspn.c
1 // RUN: %clang %s -o %t && %run %t 2>&1
2
3 #include <assert.h>
4 #include <string.h>
5
6 int main(int argc, char **argv) {
7 size_t r;
8 char s1[] = "ad";
9 char s2[] = "cd";
10 r = strcspn(s1, s2);
11 assert(r == 1);
12 return 0;
13 }