Lines Matching defs:src
39 char *src = "Hello";
41 strcpy(dest, src);
43 if (strcmp(src, buf)) {
44 t_error("%s failed: src = %s, buf = %s\n", __func__, src, buf);
48 for (int i = strlen(src) + 1; i < BUF_SIZE; i++) {
65 char *src = "";
67 strcpy(dest, src);
69 if (strcmp(src, buf)) {
70 t_error("%s failed: src = %s, buf = %s\n", __func__, src, buf);
90 char *src = "Hello world!";
92 strcpy(dest, src);
94 if (strcmp(src, buf)) {
95 t_error("%s failed: src = %s, buf = %s\n", __func__, src, buf);
109 char *src = "Hello world!";
110 strcpy(NULL, src);