├── .gitignore ├── Makefile ├── README.md ├── TODO ├── steg.c ├── steg.png ├── wavfile.c └── wavfile.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.wav 2 | steg 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoeB/steg/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoeB/steg/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | Refactor code! 2 | -------------------------------------------------------------------------------- /steg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoeB/steg/HEAD/steg.c -------------------------------------------------------------------------------- /steg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoeB/steg/HEAD/steg.png -------------------------------------------------------------------------------- /wavfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoeB/steg/HEAD/wavfile.c -------------------------------------------------------------------------------- /wavfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoeB/steg/HEAD/wavfile.h --------------------------------------------------------------------------------