├── .github └── workflows │ └── build.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── doc ├── .gitignore ├── ChangeLog.txt ├── Makefile ├── banner.png ├── banner.svg ├── google315d692c9c632ed0.html ├── index.html ├── license.html ├── rss.png ├── styles.css ├── userguide.txt ├── utarray.txt ├── uthash-mini.png ├── uthash-mini.svg ├── uthash.png ├── utlist.txt ├── utringbuffer.txt ├── utstack.txt └── utstring.txt ├── include ├── package.json ├── src ├── utarray.h ├── uthash.h ├── utlist.h ├── utringbuffer.h ├── utstack.h └── utstring.h └── tests ├── Makefile ├── README ├── all_funcs ├── bloom_perf.c ├── bloom_perf.sh ├── do_tests ├── do_tests.cygwin ├── do_tests.mingw ├── do_tests_win32.cmd ├── emit_keys.c ├── example.c ├── hashscan.c ├── keystat.c ├── keystats ├── lru_cache ├── Makefile ├── cache.c ├── cache.h └── main.c ├── simkeys.pl ├── sleep_test.c ├── tdiff.cpp ├── test1.ans ├── test1.c ├── test10.ans ├── test10.c ├── test100.ans ├── test100.c ├── test11.ans ├── test11.c ├── test11.dat ├── test12.ans ├── test12.c ├── test13.ans ├── test13.c ├── test14.ans ├── test14.c ├── test14.dat ├── test15.ans ├── test15.c ├── test16.ans ├── test16.c ├── test17.ans ├── test17.c ├── test18.ans ├── test18.c ├── test19.ans ├── test19.c ├── test2.ans ├── test2.c ├── test20.ans ├── test20.c ├── test21.ans ├── test21.c ├── test22.ans ├── test22.c ├── test23.ans ├── test23.c ├── test24.ans ├── test24.c ├── test25.ans ├── test25.c ├── test26.ans ├── test26.c ├── test27.ans ├── test27.c ├── test28.ans ├── test28.c ├── test29.ans ├── test29.c ├── test3.ans ├── test3.c ├── test30.ans ├── test30.c ├── test31.ans ├── test31.c ├── test32.ans ├── test32.c ├── test33.ans ├── test33.c ├── test34.ans ├── test34.c ├── test35.ans ├── test35.c ├── test36.ans ├── test36.c ├── test37.ans ├── test37.c ├── test38.ans ├── test38.c ├── test39.ans ├── test39.c ├── test4.ans ├── test4.c ├── test40.ans ├── test40.c ├── test41.ans ├── test41.c ├── test42.ans ├── test42.c ├── test43.ans ├── test43.c ├── test44.ans ├── test44.c ├── test45.ans ├── test45.c ├── test46.ans ├── test46.c ├── test47.ans ├── test47.c ├── test48.ans ├── test48.c ├── test49.ans ├── test49.c ├── test5.ans ├── test5.c ├── test50.ans ├── test50.c ├── test51.ans ├── test51.c ├── test52.ans ├── test52.c ├── test53.ans ├── test53.c ├── test54.ans ├── test54.c ├── test55.ans ├── test55.c ├── test56.ans ├── test56.c ├── test57.ans ├── test57.c ├── test58.ans ├── test58.c ├── test59.ans ├── test59.c ├── test6.ans ├── test6.c ├── test60.ans ├── test60.c ├── test61.ans ├── test61.c ├── test62.ans ├── test62.c ├── test63.ans ├── test63.c ├── test64.ans ├── test64.c ├── test65.ans ├── test65.c ├── test65.dat ├── test66.ans ├── test66.c ├── test67.ans ├── test67.c ├── test68.ans ├── test68.c ├── test69.ans ├── test69.c ├── test7.ans ├── test7.c ├── test70.ans ├── test70.c ├── test71.ans ├── test71.c ├── test72.ans ├── test72.c ├── test73.ans ├── test73.c ├── test74.ans ├── test74.c ├── test75.ans ├── test75.c ├── test76.ans ├── test76.c ├── test77.ans ├── test77.c ├── test78.ans ├── test78.c ├── test79.ans ├── test79.c ├── test8.ans ├── test8.c ├── test80.ans ├── test80.c ├── test81.ans ├── test81.c ├── test82.ans ├── test82.c ├── test83.ans ├── test83.c ├── test84.ans ├── test84.c ├── test85.ans ├── test85.c ├── test86.ans ├── test86.c ├── test87.ans ├── test87.c ├── test88.ans ├── test88.c ├── test89.ans ├── test89.c ├── test9.ans ├── test9.c ├── test90.ans ├── test90.c ├── test91.ans ├── test91.c ├── test92.ans ├── test92.c ├── test93.ans ├── test93.c ├── test94.ans ├── test94.c ├── test95.ans ├── test95.c ├── test96.ans ├── test96.c ├── test97.ans ├── test97.c ├── test98.ans ├── test98.c ├── test99.ans ├── test99.c └── threads ├── Makefile ├── README ├── do_tests ├── test1.c └── test2.c /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.out 3 | keystat.* 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/README.md -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/ChangeLog.txt -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/banner.png -------------------------------------------------------------------------------- /doc/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/banner.svg -------------------------------------------------------------------------------- /doc/google315d692c9c632ed0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/google315d692c9c632ed0.html -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/license.html -------------------------------------------------------------------------------- /doc/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/rss.png -------------------------------------------------------------------------------- /doc/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/styles.css -------------------------------------------------------------------------------- /doc/userguide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/userguide.txt -------------------------------------------------------------------------------- /doc/utarray.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/utarray.txt -------------------------------------------------------------------------------- /doc/uthash-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/uthash-mini.png -------------------------------------------------------------------------------- /doc/uthash-mini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/uthash-mini.svg -------------------------------------------------------------------------------- /doc/uthash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/uthash.png -------------------------------------------------------------------------------- /doc/utlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/utlist.txt -------------------------------------------------------------------------------- /doc/utringbuffer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/utringbuffer.txt -------------------------------------------------------------------------------- /doc/utstack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/utstack.txt -------------------------------------------------------------------------------- /doc/utstring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/doc/utstring.txt -------------------------------------------------------------------------------- /include: -------------------------------------------------------------------------------- 1 | src -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/package.json -------------------------------------------------------------------------------- /src/utarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/src/utarray.h -------------------------------------------------------------------------------- /src/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/src/uthash.h -------------------------------------------------------------------------------- /src/utlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/src/utlist.h -------------------------------------------------------------------------------- /src/utringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/src/utringbuffer.h -------------------------------------------------------------------------------- /src/utstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/src/utstack.h -------------------------------------------------------------------------------- /src/utstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/src/utstring.h -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/README -------------------------------------------------------------------------------- /tests/all_funcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/all_funcs -------------------------------------------------------------------------------- /tests/bloom_perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/bloom_perf.c -------------------------------------------------------------------------------- /tests/bloom_perf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/bloom_perf.sh -------------------------------------------------------------------------------- /tests/do_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/do_tests -------------------------------------------------------------------------------- /tests/do_tests.cygwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/do_tests.cygwin -------------------------------------------------------------------------------- /tests/do_tests.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/do_tests.mingw -------------------------------------------------------------------------------- /tests/do_tests_win32.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/do_tests_win32.cmd -------------------------------------------------------------------------------- /tests/emit_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/emit_keys.c -------------------------------------------------------------------------------- /tests/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/example.c -------------------------------------------------------------------------------- /tests/hashscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/hashscan.c -------------------------------------------------------------------------------- /tests/keystat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/keystat.c -------------------------------------------------------------------------------- /tests/keystats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/keystats -------------------------------------------------------------------------------- /tests/lru_cache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/lru_cache/Makefile -------------------------------------------------------------------------------- /tests/lru_cache/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/lru_cache/cache.c -------------------------------------------------------------------------------- /tests/lru_cache/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/lru_cache/cache.h -------------------------------------------------------------------------------- /tests/lru_cache/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/lru_cache/main.c -------------------------------------------------------------------------------- /tests/simkeys.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/simkeys.pl -------------------------------------------------------------------------------- /tests/sleep_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/sleep_test.c -------------------------------------------------------------------------------- /tests/tdiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/tdiff.cpp -------------------------------------------------------------------------------- /tests/test1.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test1.ans -------------------------------------------------------------------------------- /tests/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test1.c -------------------------------------------------------------------------------- /tests/test10.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test10.ans -------------------------------------------------------------------------------- /tests/test10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test10.c -------------------------------------------------------------------------------- /tests/test100.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test100.ans -------------------------------------------------------------------------------- /tests/test100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test100.c -------------------------------------------------------------------------------- /tests/test11.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test11.ans -------------------------------------------------------------------------------- /tests/test11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test11.c -------------------------------------------------------------------------------- /tests/test11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test11.dat -------------------------------------------------------------------------------- /tests/test12.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test12.ans -------------------------------------------------------------------------------- /tests/test12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test12.c -------------------------------------------------------------------------------- /tests/test13.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test13.ans -------------------------------------------------------------------------------- /tests/test13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test13.c -------------------------------------------------------------------------------- /tests/test14.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test14.ans -------------------------------------------------------------------------------- /tests/test14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test14.c -------------------------------------------------------------------------------- /tests/test14.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test14.dat -------------------------------------------------------------------------------- /tests/test15.ans: -------------------------------------------------------------------------------- 1 | betty's id is 2 2 | -------------------------------------------------------------------------------- /tests/test15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test15.c -------------------------------------------------------------------------------- /tests/test16.ans: -------------------------------------------------------------------------------- 1 | found: user 5, unix time 157680000 2 | -------------------------------------------------------------------------------- /tests/test16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test16.c -------------------------------------------------------------------------------- /tests/test17.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test17.ans -------------------------------------------------------------------------------- /tests/test17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test17.c -------------------------------------------------------------------------------- /tests/test18.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test18.ans -------------------------------------------------------------------------------- /tests/test18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test18.c -------------------------------------------------------------------------------- /tests/test19.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test19.ans -------------------------------------------------------------------------------- /tests/test19.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test19.c -------------------------------------------------------------------------------- /tests/test2.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test2.ans -------------------------------------------------------------------------------- /tests/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test2.c -------------------------------------------------------------------------------- /tests/test20.ans: -------------------------------------------------------------------------------- 1 | found 2 | -------------------------------------------------------------------------------- /tests/test20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test20.c -------------------------------------------------------------------------------- /tests/test21.ans: -------------------------------------------------------------------------------- 1 | found a 1 2 | -------------------------------------------------------------------------------- /tests/test21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test21.c -------------------------------------------------------------------------------- /tests/test22.ans: -------------------------------------------------------------------------------- 1 | found 2 | -------------------------------------------------------------------------------- /tests/test22.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test22.c -------------------------------------------------------------------------------- /tests/test23.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test23.ans -------------------------------------------------------------------------------- /tests/test23.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test23.c -------------------------------------------------------------------------------- /tests/test24.ans: -------------------------------------------------------------------------------- 1 | hash contains 10 items 2 | -------------------------------------------------------------------------------- /tests/test24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test24.c -------------------------------------------------------------------------------- /tests/test25.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test25.ans -------------------------------------------------------------------------------- /tests/test25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test25.c -------------------------------------------------------------------------------- /tests/test26.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test26.ans -------------------------------------------------------------------------------- /tests/test26.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test26.c -------------------------------------------------------------------------------- /tests/test27.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test27.ans -------------------------------------------------------------------------------- /tests/test27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test27.c -------------------------------------------------------------------------------- /tests/test28.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test28.ans -------------------------------------------------------------------------------- /tests/test28.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test28.c -------------------------------------------------------------------------------- /tests/test29.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test29.ans -------------------------------------------------------------------------------- /tests/test29.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test29.c -------------------------------------------------------------------------------- /tests/test3.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test3.ans -------------------------------------------------------------------------------- /tests/test3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test3.c -------------------------------------------------------------------------------- /tests/test30.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test30.ans -------------------------------------------------------------------------------- /tests/test30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test30.c -------------------------------------------------------------------------------- /tests/test31.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test31.ans -------------------------------------------------------------------------------- /tests/test31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test31.c -------------------------------------------------------------------------------- /tests/test32.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test32.ans -------------------------------------------------------------------------------- /tests/test32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test32.c -------------------------------------------------------------------------------- /tests/test33.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test33.ans -------------------------------------------------------------------------------- /tests/test33.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test33.c -------------------------------------------------------------------------------- /tests/test34.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test34.ans -------------------------------------------------------------------------------- /tests/test34.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test34.c -------------------------------------------------------------------------------- /tests/test35.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test35.ans -------------------------------------------------------------------------------- /tests/test35.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test35.c -------------------------------------------------------------------------------- /tests/test36.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test36.ans -------------------------------------------------------------------------------- /tests/test36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test36.c -------------------------------------------------------------------------------- /tests/test37.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test37.ans -------------------------------------------------------------------------------- /tests/test37.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test37.c -------------------------------------------------------------------------------- /tests/test38.ans: -------------------------------------------------------------------------------- 1 | hash count 10 2 | -------------------------------------------------------------------------------- /tests/test38.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test38.c -------------------------------------------------------------------------------- /tests/test39.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test39.ans -------------------------------------------------------------------------------- /tests/test39.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test39.c -------------------------------------------------------------------------------- /tests/test4.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test4.ans -------------------------------------------------------------------------------- /tests/test4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test4.c -------------------------------------------------------------------------------- /tests/test40.ans: -------------------------------------------------------------------------------- 1 | betty's id is 2 2 | -------------------------------------------------------------------------------- /tests/test40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test40.c -------------------------------------------------------------------------------- /tests/test41.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test41.ans -------------------------------------------------------------------------------- /tests/test41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test41.c -------------------------------------------------------------------------------- /tests/test42.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test42.ans -------------------------------------------------------------------------------- /tests/test42.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test42.c -------------------------------------------------------------------------------- /tests/test43.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test43.ans -------------------------------------------------------------------------------- /tests/test43.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test43.c -------------------------------------------------------------------------------- /tests/test44.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test44.ans -------------------------------------------------------------------------------- /tests/test44.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test44.c -------------------------------------------------------------------------------- /tests/test45.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test45.ans -------------------------------------------------------------------------------- /tests/test45.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test45.c -------------------------------------------------------------------------------- /tests/test46.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test46.ans -------------------------------------------------------------------------------- /tests/test46.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test46.c -------------------------------------------------------------------------------- /tests/test47.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test47.ans -------------------------------------------------------------------------------- /tests/test47.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test47.c -------------------------------------------------------------------------------- /tests/test48.ans: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 7 | 6 8 | 7 9 | 8 10 | 9 11 | -------------------------------------------------------------------------------- /tests/test48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test48.c -------------------------------------------------------------------------------- /tests/test49.ans: -------------------------------------------------------------------------------- 1 | hello 2 | world 3 | -------------------------------------------------------------------------------- /tests/test49.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test49.c -------------------------------------------------------------------------------- /tests/test5.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test5.ans -------------------------------------------------------------------------------- /tests/test5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test5.c -------------------------------------------------------------------------------- /tests/test50.ans: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | -------------------------------------------------------------------------------- /tests/test50.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test50.c -------------------------------------------------------------------------------- /tests/test51.ans: -------------------------------------------------------------------------------- 1 | 1 2 2 | 10 20 3 | -------------------------------------------------------------------------------- /tests/test51.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test51.c -------------------------------------------------------------------------------- /tests/test52.ans: -------------------------------------------------------------------------------- 1 | 1 hello 2 | 2 world 3 | -------------------------------------------------------------------------------- /tests/test52.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test52.c -------------------------------------------------------------------------------- /tests/test53.ans: -------------------------------------------------------------------------------- 1 | hello world! 2 | -------------------------------------------------------------------------------- /tests/test53.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test53.c -------------------------------------------------------------------------------- /tests/test54.ans: -------------------------------------------------------------------------------- 1 | length: 21 2 | hello world hi there 3 | -------------------------------------------------------------------------------- /tests/test54.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test54.c -------------------------------------------------------------------------------- /tests/test55.ans: -------------------------------------------------------------------------------- 1 | length is 3 2 | number 10 3 | -------------------------------------------------------------------------------- /tests/test55.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test55.c -------------------------------------------------------------------------------- /tests/test56.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test56.ans -------------------------------------------------------------------------------- /tests/test56.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test56.c -------------------------------------------------------------------------------- /tests/test57.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test57.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test57.c -------------------------------------------------------------------------------- /tests/test58.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test58.ans -------------------------------------------------------------------------------- /tests/test58.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test58.c -------------------------------------------------------------------------------- /tests/test59.ans: -------------------------------------------------------------------------------- 1 | $items{bob}{age} = 37 2 | -------------------------------------------------------------------------------- /tests/test59.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test59.c -------------------------------------------------------------------------------- /tests/test6.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test6.c -------------------------------------------------------------------------------- /tests/test60.ans: -------------------------------------------------------------------------------- 1 | $items{bob}{age} = 37 2 | -------------------------------------------------------------------------------- /tests/test60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test60.c -------------------------------------------------------------------------------- /tests/test61.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test61.ans -------------------------------------------------------------------------------- /tests/test61.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test61.c -------------------------------------------------------------------------------- /tests/test62.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test62.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test62.c -------------------------------------------------------------------------------- /tests/test63.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test63.ans -------------------------------------------------------------------------------- /tests/test63.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test63.c -------------------------------------------------------------------------------- /tests/test64.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test64.ans -------------------------------------------------------------------------------- /tests/test64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test64.c -------------------------------------------------------------------------------- /tests/test65.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test65.ans -------------------------------------------------------------------------------- /tests/test65.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test65.c -------------------------------------------------------------------------------- /tests/test65.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test65.dat -------------------------------------------------------------------------------- /tests/test66.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test66.ans -------------------------------------------------------------------------------- /tests/test66.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test66.c -------------------------------------------------------------------------------- /tests/test67.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test67.ans -------------------------------------------------------------------------------- /tests/test67.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test67.c -------------------------------------------------------------------------------- /tests/test68.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test68.ans -------------------------------------------------------------------------------- /tests/test68.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test68.c -------------------------------------------------------------------------------- /tests/test69.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test69.ans -------------------------------------------------------------------------------- /tests/test69.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test69.c -------------------------------------------------------------------------------- /tests/test7.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test7.c -------------------------------------------------------------------------------- /tests/test70.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test70.ans -------------------------------------------------------------------------------- /tests/test70.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test70.c -------------------------------------------------------------------------------- /tests/test71.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test71.ans -------------------------------------------------------------------------------- /tests/test71.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test71.c -------------------------------------------------------------------------------- /tests/test72.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test72.ans -------------------------------------------------------------------------------- /tests/test72.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test72.c -------------------------------------------------------------------------------- /tests/test73.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test73.ans -------------------------------------------------------------------------------- /tests/test73.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test73.c -------------------------------------------------------------------------------- /tests/test74.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test74.ans -------------------------------------------------------------------------------- /tests/test74.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test74.c -------------------------------------------------------------------------------- /tests/test75.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test75.ans -------------------------------------------------------------------------------- /tests/test75.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test75.c -------------------------------------------------------------------------------- /tests/test76.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test76.ans -------------------------------------------------------------------------------- /tests/test76.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test76.c -------------------------------------------------------------------------------- /tests/test77.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test77.ans -------------------------------------------------------------------------------- /tests/test77.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test77.c -------------------------------------------------------------------------------- /tests/test78.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test78.ans -------------------------------------------------------------------------------- /tests/test78.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test78.c -------------------------------------------------------------------------------- /tests/test79.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test79.ans -------------------------------------------------------------------------------- /tests/test79.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test79.c -------------------------------------------------------------------------------- /tests/test8.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test8.ans -------------------------------------------------------------------------------- /tests/test8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test8.c -------------------------------------------------------------------------------- /tests/test80.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test80.ans -------------------------------------------------------------------------------- /tests/test80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test80.c -------------------------------------------------------------------------------- /tests/test81.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test81.ans -------------------------------------------------------------------------------- /tests/test81.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test81.c -------------------------------------------------------------------------------- /tests/test82.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test82.ans -------------------------------------------------------------------------------- /tests/test82.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test82.c -------------------------------------------------------------------------------- /tests/test83.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test83.ans -------------------------------------------------------------------------------- /tests/test83.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test83.c -------------------------------------------------------------------------------- /tests/test84.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test84.ans -------------------------------------------------------------------------------- /tests/test84.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test84.c -------------------------------------------------------------------------------- /tests/test85.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test85.ans -------------------------------------------------------------------------------- /tests/test85.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test85.c -------------------------------------------------------------------------------- /tests/test86.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test86.ans -------------------------------------------------------------------------------- /tests/test86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test86.c -------------------------------------------------------------------------------- /tests/test87.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test87.ans -------------------------------------------------------------------------------- /tests/test87.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test87.c -------------------------------------------------------------------------------- /tests/test88.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test88.ans -------------------------------------------------------------------------------- /tests/test88.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test88.c -------------------------------------------------------------------------------- /tests/test89.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test89.ans -------------------------------------------------------------------------------- /tests/test89.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test89.c -------------------------------------------------------------------------------- /tests/test9.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test9.ans -------------------------------------------------------------------------------- /tests/test9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test9.c -------------------------------------------------------------------------------- /tests/test90.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test90.ans -------------------------------------------------------------------------------- /tests/test90.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test90.c -------------------------------------------------------------------------------- /tests/test91.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test91.ans -------------------------------------------------------------------------------- /tests/test91.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test91.c -------------------------------------------------------------------------------- /tests/test92.ans: -------------------------------------------------------------------------------- 1 | End 2 | -------------------------------------------------------------------------------- /tests/test92.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test92.c -------------------------------------------------------------------------------- /tests/test93.ans: -------------------------------------------------------------------------------- 1 | End 2 | -------------------------------------------------------------------------------- /tests/test93.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test93.c -------------------------------------------------------------------------------- /tests/test94.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test94.ans -------------------------------------------------------------------------------- /tests/test94.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test94.c -------------------------------------------------------------------------------- /tests/test95.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test95.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test95.c -------------------------------------------------------------------------------- /tests/test96.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test96.ans -------------------------------------------------------------------------------- /tests/test96.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test96.c -------------------------------------------------------------------------------- /tests/test97.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test97.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test97.c -------------------------------------------------------------------------------- /tests/test98.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test98.ans -------------------------------------------------------------------------------- /tests/test98.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test98.c -------------------------------------------------------------------------------- /tests/test99.ans: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 4 4 | 8 5 | 16 6 | 110 7 | 64 8 | 128 9 | 256 10 | 512 11 | -------------------------------------------------------------------------------- /tests/test99.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/test99.c -------------------------------------------------------------------------------- /tests/threads/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/threads/Makefile -------------------------------------------------------------------------------- /tests/threads/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/threads/README -------------------------------------------------------------------------------- /tests/threads/do_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/threads/do_tests -------------------------------------------------------------------------------- /tests/threads/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/threads/test1.c -------------------------------------------------------------------------------- /tests/threads/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troydhanson/uthash/HEAD/tests/threads/test2.c --------------------------------------------------------------------------------