diff options
author | pommicket <pommicket@gmail.com> | 2022-12-09 22:43:45 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-12-09 22:43:45 -0500 |
commit | 8362c840c3c3afefa56ecaef68d1c926c9ee118b (patch) | |
tree | 96052e88741b1884cca3a84a4eae7aa3655860f7 /util.c | |
parent | 78c3046bdd2c9db044a6178536e274cdc0b20120 (diff) |
more completion, not working yet
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 32 |
1 files changed, 21 insertions, 11 deletions
@@ -241,18 +241,28 @@ static int str_qsort_case_insensitive_cmp(const void *av, const void *bv) { return strcmp_case_insensitive(*a, *b); } -static void *qsort_ctx_arg; -static int (*qsort_ctx_cmp)(void *, const void *, const void *); -static int qsort_with_context_cmp(const void *a, const void *b) { - return qsort_ctx_cmp(qsort_ctx_arg, a, b); -} - -static void qsort_with_context(void *base, size_t nmemb, size_t size, int (*compar)(void *, const void *, const void *), void *arg) { - // just use global variables. hopefully we don't try to run this in something multithreaded! - qsort_ctx_arg = arg; - qsort_ctx_cmp = compar; - qsort(base, nmemb, size, qsort_with_context_cmp); +// imo windows has the argument order right here +#if _WIN32 +#define qsort_with_context qsort_s +#else +typedef struct { + int (*compar)(void *, const void *, const void *); + void *context; +} QSortWithContext; +static int qsort_with_context_cmp(const void *a, const void *b, void *context) { + QSortWithContext *c = context; + return c->compar(context, a, b); +} +static void qsort_with_context(void *base, size_t nmemb, size_t size, + int (*compar)(void *, const void *, const void *), + void *arg) { + QSortWithContext ctx = { + .compar = compar, + .context = arg + }; + qsort_r(base, nmemb, size, qsort_with_context_cmp, &ctx); } +#endif // the actual file name part of the path; get rid of the containing directory. // NOTE: the returned string is part of path, so you don't need to free it or anything. |