├── .travis.yml ├── Changelog.md ├── INSTALL ├── LICENSE ├── README.md ├── config.m4 ├── php_shmt.c ├── php_shmt.h ├── shmt.c ├── shmt.h └── tests ├── construct.phpt ├── construct_errors.phpt ├── create_errors.phpt ├── create_with_big_data.phpt ├── create_with_simple_data.phpt ├── get.phpt ├── keys.phpt └── round_trip.phpt /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenval/SHMT/HEAD/.travis.yml -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenval/SHMT/HEAD/Changelog.md -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenval/SHMT/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenval/SHMT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenval/SHMT/HEAD/README.md -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenval/SHMT/HEAD/config.m4 -------------------------------------------------------------------------------- /php_shmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenval/SHMT/HEAD/php_shmt.c -------------------------------------------------------------------------------- /php_shmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenval/SHMT/HEAD/php_shmt.h -------------------------------------------------------------------------------- /shmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenval/SHMT/HEAD/shmt.c -------------------------------------------------------------------------------- /shmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenval/SHMT/HEAD/shmt.h -------------------------------------------------------------------------------- /tests/construct.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenval/SHMT/HEAD/tests/construct.phpt -------------------------------------------------------------------------------- /tests/construct_errors.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenval/SHMT/HEAD/tests/construct_errors.phpt -------------------------------------------------------------------------------- /tests/create_errors.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenval/SHMT/HEAD/tests/create_errors.phpt -------------------------------------------------------------------------------- /tests/create_with_big_data.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenval/SHMT/HEAD/tests/create_with_big_data.phpt -------------------------------------------------------------------------------- /tests/create_with_simple_data.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenval/SHMT/HEAD/tests/create_with_simple_data.phpt -------------------------------------------------------------------------------- /tests/get.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenval/SHMT/HEAD/tests/get.phpt -------------------------------------------------------------------------------- /tests/keys.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenval/SHMT/HEAD/tests/keys.phpt -------------------------------------------------------------------------------- /tests/round_trip.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenval/SHMT/HEAD/tests/round_trip.phpt --------------------------------------------------------------------------------