Code

support wide-char ncurses library (ncursesw)
[ncmpc.git] / src / support.h
index 0a72e39b0684f87cfce4b19489a79b65c48ce950..8b4a28c188e85d03b8bbb71ff010d608748b7251 100644 (file)
@@ -28,4 +28,10 @@ void charset_init(gboolean disable);
 char *utf8_to_locale(char *str);
 char *locale_to_utf8(char *str);
 
+/* number of characters in str */
+size_t my_strlen(char *str);
+/* number of bytes in str */
+size_t my_strsize(char *str);
+
+
 #endif