We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 952b9e1 commit 2133fbdCopy full SHA for 2133fbd
cpp/ql/test/library-tests/nulltermination/test.c
@@ -3,14 +3,14 @@
3
#define va_arg(x, y) ((y)x)
4
#define va_end(x)
5
#define NULL 0
6
-
7
char* strcat(char* destination, const char* source);
8
char* strcpy(char* destination, const char* source);
9
int strlen(const char* str);
10
11
+char* strstr(char* s1, const char* s2);
+const char* strchr(const char* s, int c);
12
+int strcmp(const char *s1, const char *s2);
13
char* global = " ";
14
void addNull(char* buffer) {
15
buffer[0] = '\0';
16
}
0 commit comments