├── .clang-format ├── .gitignore ├── LICENSE ├── main.c ├── makefile ├── readme.md ├── smart.c ├── smart.h ├── test.c └── trampoline.S /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinAlbs/SmartPointer/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | smart 3 | test 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinAlbs/SmartPointer/HEAD/LICENSE -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinAlbs/SmartPointer/HEAD/main.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinAlbs/SmartPointer/HEAD/makefile -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinAlbs/SmartPointer/HEAD/readme.md -------------------------------------------------------------------------------- /smart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinAlbs/SmartPointer/HEAD/smart.c -------------------------------------------------------------------------------- /smart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinAlbs/SmartPointer/HEAD/smart.h -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinAlbs/SmartPointer/HEAD/test.c -------------------------------------------------------------------------------- /trampoline.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinAlbs/SmartPointer/HEAD/trampoline.S --------------------------------------------------------------------------------