diff options
| author | Sadeep Madurange <smadurange@users.noreply.github.com> | 2021-12-29 19:58:05 +0800 |
|---|---|---|
| committer | Sadeep Madurange <smadurange@users.noreply.github.com> | 2021-12-29 19:58:05 +0800 |
| commit | 475181ee93fd3a725927a8effa88013093fc769a (patch) | |
| tree | 9385c7a4db988ce7362698551ae39ec4300c55e9 /5 | |
| parent | 807b4e70b1a286ac7fe1f28517c05805f428089c (diff) | |
| download | k&r-exercises-475181ee93fd3a725927a8effa88013093fc769a.tar.gz | |
5.3
Diffstat (limited to '5')
| -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; |
