diff options
author | Mathis Rosenhauer <rosenhauer@dkrz.de> | 2016-04-14 12:03:19 +0200 |
---|---|---|
committer | Mathis Rosenhauer <rosenhauer@dkrz.de> | 2016-04-14 12:03:19 +0200 |
commit | 8d7d42d7809cfce85818e314a2f399affa2babbc (patch) | |
tree | d3433d65cde74227d5435ba7df925b6761d97dee | |
parent | e0ebe0cfc179a99e2db18046cd0b9382134aece1 (diff) | |
download | libaec-8d7d42d7809cfce85818e314a2f399affa2babbc.tar.gz libaec-8d7d42d7809cfce85818e314a2f399affa2babbc.tar.bz2 libaec-8d7d42d7809cfce85818e314a2f399affa2babbc.zip |
Fix syntax highlighting
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -35,7 +35,7 @@ Suppose you have an array of 32 bit signed integers you want to compress. The pointer pointing to the data shall be called `*source`, output goes into `*dest`. -```C++ +```c #include <libaec.h> ... @@ -166,7 +166,7 @@ members and constants. Using decoding is very similar to encoding, only the meaning of input and output is reversed. -```C++ +```c #include <libaec.h> ... |