ucspi-ssl  0.99e
TLS encryption for IPv6 communication
stralloc_opys.c
Go to the documentation of this file.
1 /* Public domain. */
2 
3 #include "byte.h"
4 #include "str.h"
5 #include "stralloc.h"
6 
7 int stralloc_copys(stralloc *sa,const char *s)
8 {
9  return stralloc_copyb(sa,s,str_len(s));
10 }
int stralloc_copys(stralloc *sa, const char *s)
Definition: stralloc_opys.c:7
int stralloc_copyb(stralloc *, const char *, unsigned int)
Definition: stralloc_opyb.c:6
unsigned int str_len(const char *)
Definition: str_len.c:5