Home | History | Annotate | Download | only in solaris

Lines Matching defs:src

11    char *src = malloc(100);
12 if (src == NULL) {
16 strcpy(src, "Hey, dude!");
25 copied = strlcpy(dst, src, 10);
30 copied = strlcpy(dst, src, strlen(src) + 1);
34 /* This is just a fancy way how to write strlen(src).
36 copied = strlcpy(NULL, src, 0);
41 strlcpy(src + 9, src, strlen(src) + 1);