├── .gitignore ├── .travis.yml ├── CREDITS ├── EXPERIMENTAL ├── LICENSE ├── README.md ├── config.m4 ├── config.w32 ├── php_ulopcodes.h ├── tests ├── ulopcodes_001.phpt ├── ulopcodes_002.phpt ├── ulopcodes_003.phpt ├── ulopcodes_004.phpt ├── ulopcodes_005.phpt └── ulopcodes_006.phpt └── ulopcodes.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmaga/php-ulopcodes/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmaga/php-ulopcodes/HEAD/.travis.yml -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- 1 | ulopcodes 2 | Pedro Magalhães 3 | -------------------------------------------------------------------------------- /EXPERIMENTAL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmaga/php-ulopcodes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmaga/php-ulopcodes/HEAD/README.md -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmaga/php-ulopcodes/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmaga/php-ulopcodes/HEAD/config.w32 -------------------------------------------------------------------------------- /php_ulopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmaga/php-ulopcodes/HEAD/php_ulopcodes.h -------------------------------------------------------------------------------- /tests/ulopcodes_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmaga/php-ulopcodes/HEAD/tests/ulopcodes_001.phpt -------------------------------------------------------------------------------- /tests/ulopcodes_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmaga/php-ulopcodes/HEAD/tests/ulopcodes_002.phpt -------------------------------------------------------------------------------- /tests/ulopcodes_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmaga/php-ulopcodes/HEAD/tests/ulopcodes_003.phpt -------------------------------------------------------------------------------- /tests/ulopcodes_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmaga/php-ulopcodes/HEAD/tests/ulopcodes_004.phpt -------------------------------------------------------------------------------- /tests/ulopcodes_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmaga/php-ulopcodes/HEAD/tests/ulopcodes_005.phpt -------------------------------------------------------------------------------- /tests/ulopcodes_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmaga/php-ulopcodes/HEAD/tests/ulopcodes_006.phpt -------------------------------------------------------------------------------- /ulopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmmaga/php-ulopcodes/HEAD/ulopcodes.c --------------------------------------------------------------------------------