├── .gitignore ├── Dockerfile ├── README.md ├── UNLICENSE ├── docs └── README ├── makefile ├── monster.c ├── movie.c ├── pacdefs.h ├── pacman.6 ├── pacman.c └── util.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/pacman/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/pacman/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/pacman/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/pacman/HEAD/UNLICENSE -------------------------------------------------------------------------------- /docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/pacman/HEAD/docs/README -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/pacman/HEAD/makefile -------------------------------------------------------------------------------- /monster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/pacman/HEAD/monster.c -------------------------------------------------------------------------------- /movie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/pacman/HEAD/movie.c -------------------------------------------------------------------------------- /pacdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/pacman/HEAD/pacdefs.h -------------------------------------------------------------------------------- /pacman.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/pacman/HEAD/pacman.6 -------------------------------------------------------------------------------- /pacman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/pacman/HEAD/pacman.c -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troglobit/pacman/HEAD/util.c --------------------------------------------------------------------------------