We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a79d06 commit 9c2328dCopy full SHA for 9c2328d
1 file changed
examples/02_inline_hashmap.c
@@ -11,16 +11,14 @@
11
#define EXTLIB_IMPL
12
#include "../extlib.h"
13
14
-#define HIST_DEF 80
15
-
16
#define shift(argc, argv) ((argc)--, *(argv)++)
+#define HIST_DEF 80
17
18
const char *symbols = "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~";
+static bool reverse;
19
20
typedef Entry(StringSlice, size_t) WordFreq;
21
22
-static bool reverse;
23
24
static int qsort_cmp(const void *a, const void *b) {
25
const WordFreq *e1 = a, *e2 = b;
26
if(e1->value < e2->value) return reverse ? -1 : 1;
0 commit comments