diff options
Diffstat (limited to 'stralloc_cat.c')
| -rw-r--r-- | stralloc_cat.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/stralloc_cat.c b/stralloc_cat.c new file mode 100644 index 0000000..efbb112 --- /dev/null +++ b/stralloc_cat.c | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | #include "byte.h" | ||
| 2 | #include "stralloc.h" | ||
| 3 | |||
| 4 | int stralloc_cat(sato,safrom) | ||
| 5 | stralloc *sato; | ||
| 6 | stralloc *safrom; | ||
| 7 | { | ||
| 8 | return stralloc_catb(sato,safrom->s,safrom->len); | ||
| 9 | } | ||
