summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: bf38fb2)
raw | patch | inline | side by side (parent: bf38fb2)
author | Max Kellermann <max@duempel.org> | |
Tue, 13 May 2014 07:18:29 +0000 (09:18 +0200) | ||
committer | Max Kellermann <max@duempel.org> | |
Tue, 13 May 2014 07:21:43 +0000 (09:21 +0200) |
src/charset.c | patch | blob | history |
diff --git a/src/charset.c b/src/charset.c
index 61d7dac70dbcbb3ef4774b34c2c0189a8a914c29..1c1b0465755c645e19416c1423cb5f9ef88e75b7 100644 (file)
--- a/src/charset.c
+++ b/src/charset.c
#endif
}
-static inline unsigned
+gcc_unused
+static unsigned
ascii_cut_width(char *p, unsigned max_width)
{
size_t length = strlen(p);
return max_width;
}
-static inline unsigned
+gcc_unused
+static unsigned
narrow_cut_width(char *p, unsigned max_width)
{
size_t length = g_utf8_strlen(p, -1);
return max_width;
}
-static inline unsigned
+gcc_unused
+static unsigned
wide_cut_width(char *p, unsigned max_width)
{
size_t length = g_utf8_strlen(p, -1);