From 2e643825733274159c612701c1c1ea7caac5112c Mon Sep 17 00:00:00 2001 From: Felicity Tarnell Date: Sat, 8 Mar 2014 13:08:55 +0000 Subject: [PATCH] Prototype wcsl* --- tts.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tts.h b/tts.h index 9e30d88..d3eab40 100644 --- a/tts.h +++ b/tts.h @@ -65,4 +65,12 @@ void hist_add(history_t *, wchar_t const *); extern history_t *searchhist; extern history_t *prompthist; +#ifndef HAVE_WCSLCPY +size_t wcslcat(wchar_t *s1, const wchar_t *s2, size_t n); +#endif + +#ifndef HAVE_WCSLCAT +size_t wcslcpy(wchar_t *s1, const wchar_t *s2, size_t n); +#endif + #endif /* !TTS_H */