diff options
Diffstat (limited to 'lib/minitasn1/int.h')
-rw-r--r-- | lib/minitasn1/int.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/minitasn1/int.h b/lib/minitasn1/int.h index 6b2b5eb6c6..fcaf0d8d09 100644 --- a/lib/minitasn1/int.h +++ b/lib/minitasn1/int.h @@ -1,6 +1,5 @@ /* - * Copyright (C) 2002, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 - * Free Software Foundation, Inc. + * Copyright (C) 2002-2012 Free Software Foundation, Inc. * * This file is part of LIBTASN1. * @@ -63,6 +62,12 @@ struct node_asn_struct #define _asn1_calloc calloc #define _asn1_realloc realloc #define _asn1_strdup strdup +#define _asn1_strlen(s) strlen((const char *) s) +#define _asn1_strtol(n,e,b) strtol((const char *) n, e, b) +#define _asn1_strtoul(n,e,b) strtoul((const char *) n, e, b) +#define _asn1_strcmp(a,b) strcmp((const char *)a, (const char *)b) +#define _asn1_strcpy(a,b) strcpy((char *)a, (const char *)b) +#define _asn1_strcat(a,b) strcat((char *)a, (const char *)b) #define MAX_LOG_SIZE 1024 /* maximum number of characters of a log message */ |