aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/fallback.h
diff options
context:
space:
mode:
authorGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2016-05-16 21:30:31 +0000
committerGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2016-05-18 22:39:20 +0000
commit7c2c516353bbf6fae20fb5ec8fba373cf70d3aba (patch)
tree0eb7f6f231bca8b4eec432ceabf4da7d624df0ab /src/fallback.h
parentdb18449f4cdc190c74a2ba3228fbd1e0ca467154 (diff)
move convert_digit from fallback to common
It's not required as part of fallback functions any more.
Diffstat (limited to 'src/fallback.h')
-rw-r--r--src/fallback.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/fallback.h b/src/fallback.h
index 97f49523..b28e7b17 100644
--- a/src/fallback.h
+++ b/src/fallback.h
@@ -76,11 +76,6 @@ int wcsncasecmp_use_weak(const wchar_t *s1, const wchar_t *s2, size_t n);
wchar_t *wcsndup(const wchar_t *in, size_t c);
#endif
-/// Converts from wide char to digit in the specified base. If d is not a valid digit in the
-/// specified base, return -1. This is a helper function for wcstol, but it is useful itself, so it
-/// is exported.
-long convert_digit(wchar_t d, int base);
-
#ifndef HAVE_WCSLCAT
/// Appends src to string dst of size siz (unlike wcsncat, siz is the full size of dst, not space
/// left). At most siz-1 characters will be copied. Always NUL terminates (unless siz <=