├── .gitignore ├── LICENSE ├── README.md ├── easyxs.h ├── easyxs_debug.h ├── easyxs_numeric.h ├── easyxs_perlcall.h ├── easyxs_scalar.h ├── easyxs_string.h ├── easyxs_structref.h ├── init.h └── ppport.h /.gitignore: -------------------------------------------------------------------------------- 1 | .*.sw* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FGasper/easyxs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FGasper/easyxs/HEAD/README.md -------------------------------------------------------------------------------- /easyxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FGasper/easyxs/HEAD/easyxs.h -------------------------------------------------------------------------------- /easyxs_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FGasper/easyxs/HEAD/easyxs_debug.h -------------------------------------------------------------------------------- /easyxs_numeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FGasper/easyxs/HEAD/easyxs_numeric.h -------------------------------------------------------------------------------- /easyxs_perlcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FGasper/easyxs/HEAD/easyxs_perlcall.h -------------------------------------------------------------------------------- /easyxs_scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FGasper/easyxs/HEAD/easyxs_scalar.h -------------------------------------------------------------------------------- /easyxs_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FGasper/easyxs/HEAD/easyxs_string.h -------------------------------------------------------------------------------- /easyxs_structref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FGasper/easyxs/HEAD/easyxs_structref.h -------------------------------------------------------------------------------- /init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FGasper/easyxs/HEAD/init.h -------------------------------------------------------------------------------- /ppport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FGasper/easyxs/HEAD/ppport.h --------------------------------------------------------------------------------