├── .gitignore ├── Makefile ├── README.md ├── imgs ├── align.png ├── fluctuate.png └── replace.png ├── includes ├── bound.h └── common.h └── src ├── bound.c ├── common.c ├── fluctuator.c └── replace.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/funcshenanigans/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/funcshenanigans/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/funcshenanigans/HEAD/README.md -------------------------------------------------------------------------------- /imgs/align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/funcshenanigans/HEAD/imgs/align.png -------------------------------------------------------------------------------- /imgs/fluctuate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/funcshenanigans/HEAD/imgs/fluctuate.png -------------------------------------------------------------------------------- /imgs/replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/funcshenanigans/HEAD/imgs/replace.png -------------------------------------------------------------------------------- /includes/bound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/funcshenanigans/HEAD/includes/bound.h -------------------------------------------------------------------------------- /includes/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/funcshenanigans/HEAD/includes/common.h -------------------------------------------------------------------------------- /src/bound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/funcshenanigans/HEAD/src/bound.c -------------------------------------------------------------------------------- /src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/funcshenanigans/HEAD/src/common.c -------------------------------------------------------------------------------- /src/fluctuator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/funcshenanigans/HEAD/src/fluctuator.c -------------------------------------------------------------------------------- /src/replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whokilleddb/funcshenanigans/HEAD/src/replace.c --------------------------------------------------------------------------------