/usr/share/splint/imports/strings.lcl is in splint-data 3.1.2.dfsg1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | /*
** strings.lcl
*/
int strcasecmp(char *s1, char *s2)
{
ensures true ;
}
int strncasecmp(char *s1, char *s2, int n)
{
ensures true ;
}
char *strcat(char *s1, char *s2)
{
ensures true ;
}
char *strncat(char *s1, char *s2, int n)
{
ensures true ;
}
int strcmp(char *s1, char *s2)
{
ensures true ;
}
int strncmp(char *s1, char *s2, int n)
{
ensures true ;
}
| char : void | *strcpy(char *s1, char *s2)
{
ensures true ;
}
char *strncpy(char *s1, char *s2, int n)
{
ensures true ;
}
int strlen(char *s)
{
ensures true ;
}
char *strchr(char *s, int c)
{
ensures true ;
}
char *strrchr(char *s, int c)
{
ensures true ;
}
char *strpbrk(char *s1, char *s2)
{
ensures true ;
}
int strspn(char *s1, char *s2)
{
ensures true ;
}
int strcspn(char *s1, char *s2)
{
ensures true ;
}
char *strtok(char *s1, char *s2)
{
ensures true ;
}
char *index(char *s, char c)
{
ensures true ;
}
char *rindex(char *s, char c)
{
ensures true ;
}
char *strstr(char *s1, char *s2)
{
ensures true ;
}
|