ucspi-ssl  0.99e
TLS encryption for IPv6 communication
stralloc_cat.c
Go to the documentation of this file.
1 /* Public domain. */
2 
3 #include "byte.h"
4 #include "stralloc.h"
5 
6 int stralloc_cat(stralloc *sato,const stralloc *safrom)
7 {
8  return stralloc_catb(sato,safrom->s,safrom->len);
9 }
int stralloc_cat(stralloc *sato, const stralloc *safrom)
Definition: stralloc_cat.c:6
int stralloc_catb(stralloc *, const char *, unsigned int)
Definition: stralloc_catb.c:6