summaryrefslogtreecommitdiff
path: root/features/mkc_efun.h
diff options
context:
space:
mode:
Diffstat (limited to 'features/mkc_efun.h')
-rw-r--r--features/mkc_efun.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/features/mkc_efun.h b/features/mkc_efun.h
index 8e8a217..0e604dd 100644
--- a/features/mkc_efun.h
+++ b/features/mkc_efun.h
@@ -63,7 +63,7 @@ void * emalloc(size_t n);
void * erealloc(void *p, size_t n);
-//void ereallocarr(void *, size_t, size_t);
+void ereallocarr(void *, size_t, size_t);
char * estrdup(const char *s);
@@ -75,6 +75,10 @@ size_t estrlcpy(char *dst, const char *src, size_t len);
int evasprintf(char ** /*__restrict*/ str, const char * /*__restrict*/ fmt, va_list ap);
+intmax_t estrtoi(const char * nptr, int base, intmax_t lo, intmax_t hi);
+
+uintmax_t estrtou(const char * nptr, int base, uintmax_t lo, uintmax_t hi);
+
__MKC_END_DECLS
# endif