diff options
| -rw-r--r-- | .gitattributes | 4 | ||||
| -rw-r--r-- | README.md | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..5d659dd3 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +*.c linguist-detectable=true
+*.h linguist-detectable=false
+*.cpp linguist-detectable=false
+*.hpp linguist-detectable=false
@@ -39,6 +39,7 @@ Highlights - **Small footprint** - Small source code and generated executables. The executable from the example below using six different containers is *27 kb in size* compiled with TinyC.
- **Dual mode compilation** - By default it is a simple header-only library with inline and static methods only, but you can easily switch to create a traditional library with shared symbols, without changing existing source files. See the Installation section.
- **No callback functions** - All passed template argument functions/macros are directly called from the implementation, no slow callbacks which requires storage.
+- **Compiles with C++ and C99** - C code can be compiled with C++.
Performance
-----------
|
