blob: f6adac796cadb82a59ac582665fc2ef19fd419d1 [file] [log] [blame]
// RUN: test.sh -p -t %t %s
#include <string.h>
#include <assert.h>
// Correct usage of strlen().
int main()
{
char string[] = "string";
assert(strlen(string) == 6);
return 0;
}