aboutsummaryrefslogtreecommitdiff
path: root/src/core/ngx_string.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-05-21 14:05:23 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-05-21 14:05:23 +0000
commit35921283df0eae8ae7a3b9a583f2e9d99f31c19b (patch)
tree2ece62bc1615fb50826c30e3a50e4bf387377825 /src/core/ngx_string.c
parent2517fbf2b8e2306b83102ffeda0c54b5a15780a3 (diff)
downloadnginx-35921283df0eae8ae7a3b9a583f2e9d99f31c19b.tar.gz
nginx-35921283df0eae8ae7a3b9a583f2e9d99f31c19b.zip
ngx_sort
Diffstat (limited to 'src/core/ngx_string.c')
-rw-r--r--src/core/ngx_string.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/core/ngx_string.c b/src/core/ngx_string.c
index fe8cfacdd..7b5287f0a 100644
--- a/src/core/ngx_string.c
+++ b/src/core/ngx_string.c
@@ -1202,6 +1202,33 @@ done:
}
+/* ngx_sort() is implemented as insertion sort because we need stable sort */
+
+void
+ngx_sort(void *base, size_t n, size_t size,
+ int (*cmp)(const void *, const void *))
+{
+ u_char *p1, *p2;
+ u_char buf[256];
+
+ for (p1 = (u_char *) base + size;
+ p1 < (u_char *) base + n * size;
+ p1 += size)
+ {
+ ngx_memcpy(buf, p1, size);
+
+ for (p2 = p1;
+ p2 > (u_char *) base && cmp(p2 - size, buf) > 0;
+ p2 -= size)
+ {
+ ngx_memcpy(p2, p2 - size, size);
+ }
+
+ ngx_memcpy(p2, buf, size);
+ }
+}
+
+
#if (NGX_MEMCPY_LIMIT)
void *