From af95a58263350caeb6f6932b475cad70be208518 Mon Sep 17 00:00:00 2001 From: default Date: Sun, 16 Oct 2022 20:23:01 +0200 Subject: [PATCH] Some emoticon tweaks. --- format.c | 3 ++- xs_httpd.h | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/format.c b/format.c index b7dfdf8..f0f4298 100644 --- a/format.c +++ b/format.c @@ -20,7 +20,7 @@ struct { { ":-(", "😞" }, { ":-*", "😘" }, { ":-/", "😕" }, - { "8-o", "😳" }, + { "8-o", "😲" }, { "%-)", "🤪" }, { ":_(", "😢" }, { ":-|", "😐" }, @@ -29,6 +29,7 @@ struct { { ":eyeroll:", "🙄" }, { ":beer:", "🍺" }, { ":beers:", "🍻" }, + { ":munch:", "😱" }, { NULL, NULL } }; diff --git a/xs_httpd.h b/xs_httpd.h index ea56263..2fb5057 100644 --- a/xs_httpd.h +++ b/xs_httpd.h @@ -69,6 +69,8 @@ d_char *xs_url_vars(char *str) } +void *memmem(const void *, size_t, const void *, size_t); + d_char *_xs_multipart_form_data(char *payload, int p_size, char *header) /* parses a multipart/form-data payload */ {