aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/https/minitasn1/gstr.h
blob: 360c6d888ddd03cdb1509c599a4c9969b5d57ea3 (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)