diff options
author | Simon Josefsson <simon@josefsson.org> | 2009-03-04 17:17:46 +0100 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2009-03-04 17:17:46 +0100 |
commit | 45e34b66d1c30727816cca7594b44ea212e47ad4 (patch) | |
tree | c954d417f3b8face79292904dddfe4e08876d93a /lib/gstr.h | |
parent | 7610ca58af3ccc0431e89d6ffd6279f6b10f283b (diff) | |
download | libtasn1-45e34b66d1c30727816cca7594b44ea212e47ad4.tar.gz libtasn1-45e34b66d1c30727816cca7594b44ea212e47ad4.tar.bz2 libtasn1-45e34b66d1c30727816cca7594b44ea212e47ad4.zip |
Indent code. Reproduce using 'make indent' with GNU indent 2.2.10.
Diffstat (limited to 'lib/gstr.h')
-rw-r--r-- | lib/gstr.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,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); +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,ASN1_MAX_ERROR_DESCRIPTION_SIZE,y) #define Estrcat(x,y) _asn1_str_cat(x,ASN1_MAX_ERROR_DESCRIPTION_SIZE,y) |