├── .gitmodules ├── LICENSE-SPEC.md ├── README.md ├── nanotime-specification.md ├── reference-implementation ├── .gitignore ├── LICENSE-CODE.md ├── README.md ├── include │ └── smalltime │ │ ├── nanotime.h │ │ └── smalltime.h ├── meson.build └── tests │ ├── meson.build │ └── src │ ├── nanotime_test.cpp │ ├── readme_examples_test.cpp │ └── smalltime_test.cpp └── smalltime-specification.md /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE-SPEC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenerud/smalltime/HEAD/LICENSE-SPEC.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenerud/smalltime/HEAD/README.md -------------------------------------------------------------------------------- /nanotime-specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenerud/smalltime/HEAD/nanotime-specification.md -------------------------------------------------------------------------------- /reference-implementation/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /reference-implementation/LICENSE-CODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenerud/smalltime/HEAD/reference-implementation/LICENSE-CODE.md -------------------------------------------------------------------------------- /reference-implementation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenerud/smalltime/HEAD/reference-implementation/README.md -------------------------------------------------------------------------------- /reference-implementation/include/smalltime/nanotime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenerud/smalltime/HEAD/reference-implementation/include/smalltime/nanotime.h -------------------------------------------------------------------------------- /reference-implementation/include/smalltime/smalltime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenerud/smalltime/HEAD/reference-implementation/include/smalltime/smalltime.h -------------------------------------------------------------------------------- /reference-implementation/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenerud/smalltime/HEAD/reference-implementation/meson.build -------------------------------------------------------------------------------- /reference-implementation/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenerud/smalltime/HEAD/reference-implementation/tests/meson.build -------------------------------------------------------------------------------- /reference-implementation/tests/src/nanotime_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenerud/smalltime/HEAD/reference-implementation/tests/src/nanotime_test.cpp -------------------------------------------------------------------------------- /reference-implementation/tests/src/readme_examples_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenerud/smalltime/HEAD/reference-implementation/tests/src/readme_examples_test.cpp -------------------------------------------------------------------------------- /reference-implementation/tests/src/smalltime_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenerud/smalltime/HEAD/reference-implementation/tests/src/smalltime_test.cpp -------------------------------------------------------------------------------- /smalltime-specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenerud/smalltime/HEAD/smalltime-specification.md --------------------------------------------------------------------------------