Skip to content

Commit

Permalink
removed superfluous const from api definition.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed-von-Schleck committed Apr 27, 2014
1 parent 7a0472f commit 13d8668
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shoco.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

#include <stddef.h>

size_t shoco_compress(const char * const in, size_t len, char * const out, size_t bufsize);
size_t shoco_decompress(const char * const in, size_t len, char * const out, size_t bufsize);
size_t shoco_compress(const char * in, size_t len, char * out, size_t bufsize);
size_t shoco_decompress(const char * in, size_t len, char * out, size_t bufsize);

0 comments on commit 13d8668

Please sign in to comment.