summaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/util.h b/src/util.h
index 573eb27..42b413f 100644
--- a/src/util.h
+++ b/src/util.h
@@ -1,7 +1,6 @@
#pragma once
#include <stdio.h>
-#include <wchar.h>
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#define MIN(a, b) ((a) > (b) ? (b) : (a))
@@ -15,10 +14,6 @@
#define LINK(p) (&(p)->link)
#define UPCAST(iter, type) LINK_UPCAST(iter, type, link)
-int strnwidth(const char *s, int n);
-
-const wchar_t *wcscasestr(const wchar_t *haystack, const wchar_t *needle);
-
void panic(const char *file, int line, const char *msg, ...);
void assert(int cond, const char *file, int line, const char *condstr);
void error(const char *fmtstr, ...);