diff options
| -rw-r--r-- | 5/3.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -5,7 +5,8 @@ #define MAXLEN 1000 -void mstrcat(char *, char *); +/* Copies str t to the end of str s */ +void mstrcat(char *s, char *t); int main(int argc, char *argv[]) { char *s, *t; |
