]> andersk Git - splint.git/blame - imports/string.lcl
Fixed bug causing Splint is suggest using the +ignoresigns flag even if it was alread...
[splint.git] / imports / string.lcl
CommitLineData
885824d3 1/*
2** strings.lcl
3*/
4
5int strcasecmp(char *s1, char *s2)
6{
7 ensures true ;
8}
9
10int strncasecmp(char *s1, char *s2, int n)
11{
12 ensures true ;
13}
14
15char *strcat(char *s1, char *s2)
16{
17 ensures true ;
18}
19
20char *strncat(char *s1, char *s2, int n)
21{
22 ensures true ;
23}
24
25int strcmp(char *s1, char *s2)
26{
27 ensures true ;
28}
29
30int strncmp(char *s1, char *s2, int n)
31{
32 ensures true ;
33}
34
35| char : void | *strcpy(char *s1, char *s2)
36{
37 ensures true ;
38}
39
40char *strncpy(char *s1, char *s2, int n)
41{
42 ensures true ;
43}
44
45int strlen(char *s)
46{
47 ensures true ;
48}
49
50char *strchr(char *s, int c)
51{
52 ensures true ;
53}
54
55char *strrchr(char *s, int c)
56{
57 ensures true ;
58}
59
60char *strpbrk(char *s1, char *s2)
61{
62 ensures true ;
63}
64
65int strspn(char *s1, char *s2)
66{
67 ensures true ;
68}
69
70int strcspn(char *s1, char *s2)
71{
72 ensures true ;
73}
74
75char *strtok(char *s1, char *s2)
76{
77 ensures true ;
78}
79
80char *index(char *s, char c)
81{
82 ensures true ;
83}
84
85char *rindex(char *s, char c)
86{
87 ensures true ;
88}
89
90char *strstr(char *s1, char *s2)
91{
92 ensures true ;
93}
94
95
This page took 2.274768 seconds and 5 git commands to generate.