├── .gitignore ├── LICENSE ├── Makefile ├── README ├── arg.h ├── asroot.8 ├── asroot.c └── config.mk /.gitignore: -------------------------------------------------------------------------------- 1 | *\#* 2 | *~ 3 | *.o 4 | *.su 5 | /asroot 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/asroot/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/asroot/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/asroot/HEAD/README -------------------------------------------------------------------------------- /arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/asroot/HEAD/arg.h -------------------------------------------------------------------------------- /asroot.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/asroot/HEAD/asroot.8 -------------------------------------------------------------------------------- /asroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/asroot/HEAD/asroot.c -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/asroot/HEAD/config.mk --------------------------------------------------------------------------------