summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--format.c3
-rw-r--r--xs_httpd.h2
2 files changed, 4 insertions, 1 deletions
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 */
{