Update gnulib files.
[libtasn1.git] / lib / gstr.h
blob5508d26e0279997994fc6888d65acee6999c8d2a
1 void _asn1_str_cpy( char* dest, size_t dest_tot_size, const char* src);
2 void _asn1_str_cat( char* dest, size_t dest_tot_size, const char* src);
4 #define Estrcpy(x,y) _asn1_str_cpy(x,MAX_ERROR_DESCRIPTION_SIZE,y)
5 #define Estrcat(x,y) _asn1_str_cat(x,MAX_ERROR_DESCRIPTION_SIZE,y)