Add more comments and a new comparison function.

This commit is contained in:
2016-12-28 19:29:51 -08:00
parent a4d41361dd
commit 936b2835b2
5 changed files with 69 additions and 4 deletions

View File

@@ -1,3 +1,4 @@
#include "libds.h"
int compare_always(void* a, void* b) { return 1; }
int compare_pointer(void* a, void* b) { return a == b; }