summaryrefslogtreecommitdiff
path: root/src/html_smartypants.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/html_smartypants.c')
-rw-r--r--src/html_smartypants.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/html_smartypants.c b/src/html_smartypants.c
index 9f9dcf0..bbe4fc5 100644
--- a/src/html_smartypants.c
+++ b/src/html_smartypants.c
@@ -60,7 +60,7 @@ static const uint8_t smartypants_cb_chars[UINT8_MAX+1] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
};
-static inline int
+static int
word_boundary(uint8_t c)
{
return c == 0 || isspace(c) || ispunct(c);