summaryrefslogtreecommitdiff
path: root/plugins/TipperYM/src/str_utils.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2024-07-22 14:47:52 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-07-22 14:47:57 +0300
commit2e91047d7333f7795cbda482fb3dc22c1b1096b3 (patch)
tree45b8d75e5b89883d6a0053944279a3b0dbae593e /plugins/TipperYM/src/str_utils.h
parent273d191c67f3228db88212b3f325ffc59aad5fd1 (diff)
Tipper: old helpers removed
Diffstat (limited to 'plugins/TipperYM/src/str_utils.h')
-rw-r--r--plugins/TipperYM/src/str_utils.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/plugins/TipperYM/src/str_utils.h b/plugins/TipperYM/src/str_utils.h
index 4beca4e51b..1c6cf364c5 100644
--- a/plugins/TipperYM/src/str_utils.h
+++ b/plugins/TipperYM/src/str_utils.h
@@ -21,8 +21,6 @@ Boston, MA 02111-1307, USA.
#ifndef _STR_UTILS_INC
#define _STR_UTILS_INC
-void set_codepage();
-
bool a2w(const char *as, wchar_t *buff, int bufflen);
bool w2a(const wchar_t *ws, char *buff, int bufflen);
@@ -32,34 +30,6 @@ bool w2utf(const wchar_t *ws, char *buff, int bufflen);
bool a2utf(const char *as, char *buff, int bufflen);
bool utf2a(const char *ws, char *buff, int bufflen);
-bool t2w(const wchar_t *ts, wchar_t *buff, int bufflen);
-bool w2t(const wchar_t *ws, wchar_t *buff, int bufflen);
-
-bool t2a(const wchar_t *ts, char *buff, int bufflen);
-bool a2t(const char *as, wchar_t *buff, int bufflen);
-
-bool t2utf(const wchar_t *ts, char *buff, int bufflen);
-bool utf2t(const char *us, wchar_t *buff, int bufflen);
-
-// remember to free return value
-wchar_t *a2w(const char *as);
-char *w2a(const wchar_t *ws);
-
-wchar_t *utf2w(const char *us);
-char *w2utf(const wchar_t *ws);
-
-char *utf2a(const char *us);
-char *a2utf(const char *as);
-
-wchar_t *t2w(const wchar_t *ts);
-wchar_t *w2t(const wchar_t *ws);
-
-wchar_t *utf2t(const char *us);
-char *t2utf(const wchar_t *ts);
-
-char *t2a(const wchar_t *ts);
-wchar_t *a2t(const char *as);
-
wchar_t *myfgets(wchar_t *Buf, int MaxCount, FILE *File);
#endif