├── .gitignore ├── LICENSE ├── README.md ├── getopt.h ├── main.c ├── resource.h ├── runsc.sln ├── runsc.vcxproj ├── runsc.vcxproj.filters └── runsc.vcxproj.user /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edygert/runsc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edygert/runsc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edygert/runsc/HEAD/README.md -------------------------------------------------------------------------------- /getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edygert/runsc/HEAD/getopt.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edygert/runsc/HEAD/main.c -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edygert/runsc/HEAD/resource.h -------------------------------------------------------------------------------- /runsc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edygert/runsc/HEAD/runsc.sln -------------------------------------------------------------------------------- /runsc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edygert/runsc/HEAD/runsc.vcxproj -------------------------------------------------------------------------------- /runsc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edygert/runsc/HEAD/runsc.vcxproj.filters -------------------------------------------------------------------------------- /runsc.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edygert/runsc/HEAD/runsc.vcxproj.user --------------------------------------------------------------------------------