├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── TODO.md ├── crc16.c ├── rax-oom-test.c ├── rax-test.c ├── rax.c ├── rax.h ├── rax_malloc.h ├── rax_oom_malloc.h ├── rc4rand.c └── rc4rand.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/rax/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/rax/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/rax/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/rax/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/rax/HEAD/TODO.md -------------------------------------------------------------------------------- /crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/rax/HEAD/crc16.c -------------------------------------------------------------------------------- /rax-oom-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/rax/HEAD/rax-oom-test.c -------------------------------------------------------------------------------- /rax-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/rax/HEAD/rax-test.c -------------------------------------------------------------------------------- /rax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/rax/HEAD/rax.c -------------------------------------------------------------------------------- /rax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/rax/HEAD/rax.h -------------------------------------------------------------------------------- /rax_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/rax/HEAD/rax_malloc.h -------------------------------------------------------------------------------- /rax_oom_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/rax/HEAD/rax_oom_malloc.h -------------------------------------------------------------------------------- /rc4rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/rax/HEAD/rc4rand.c -------------------------------------------------------------------------------- /rc4rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/rax/HEAD/rc4rand.h --------------------------------------------------------------------------------