summaryrefslogtreecommitdiffstats
path: root/src/include/wchar.h
diff options
context:
space:
mode:
authorMichael Brown2012-10-15 01:36:48 +0200
committerMichael Brown2012-10-15 19:32:16 +0200
commit51b65d5f9c5d9f02a11810ac068b781b84c65143 (patch)
treec197573f819ab896d4fd3528ce3f26bd817d5263 /src/include/wchar.h
parent[serial] Don't enable serial console without serial support (diff)
downloadipxe-51b65d5f9c5d9f02a11810ac068b781b84c65143.tar.gz
ipxe-51b65d5f9c5d9f02a11810ac068b781b84c65143.tar.xz
ipxe-51b65d5f9c5d9f02a11810ac068b781b84c65143.zip
[libc] Add wcslen() function
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/wchar.h')
-rw-r--r--src/include/wchar.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/wchar.h b/src/include/wchar.h
index 84312c70..ba349aae 100644
--- a/src/include/wchar.h
+++ b/src/include/wchar.h
@@ -24,4 +24,6 @@ size_t wcrtomb ( char *buf, wchar_t wc, mbstate_t *ps __unused ) {
return 1;
}
+extern size_t wcslen ( const wchar_t *string );
+
#endif /* WCHAR_H */