summaryrefslogtreecommitdiff
path: root/lib/gstr.h
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2009-03-04 17:17:46 +0100
committerSimon Josefsson <simon@josefsson.org>2009-03-04 17:17:46 +0100
commit45e34b66d1c30727816cca7594b44ea212e47ad4 (patch)
treec954d417f3b8face79292904dddfe4e08876d93a /lib/gstr.h
parent7610ca58af3ccc0431e89d6ffd6279f6b10f283b (diff)
downloadlibtasn1-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gstr.h b/lib/gstr.h
index 992fd0f..5452fa4 100644
--- a/lib/gstr.h
+++ b/lib/gstr.h
@@ -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)