aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/https/minitasn1/gstr.h
blob: 5508d26e0279997994fc6888d65acee6999c8d2a (plain) (blame)
1
2
3
4
5
void _asn1_str_cpy( char* dest, size_t dest_tot_size, const char* src);
void _asn1_str_cat( char* dest, size_t dest_tot_size, const char* src);

#define Estrcpy(x,y) _asn1_str_cpy(x,MAX_ERROR_DESCRIPTION_SIZE,y)
#define Estrcat(x,y) _asn1_str_cat(x,MAX_ERROR_DESCRIPTION_SIZE,y)