aboutsummaryrefslogtreecommitdiff
path: root/test/sanitizer_common/TestCases/strcspn.c
blob: 066a27bbdf2cfdeb26c756254ebd3263b5793048 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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;
}