C: run-length-encoding
This commit is contained in:
13
c/run-length-encoding/run_length_encoding.h
Normal file
13
c/run-length-encoding/run_length_encoding.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef RUN_LENGTH_ENCODING_H
|
||||
#define RUN_LENGTH_ENCODING_H
|
||||
|
||||
|
||||
int encode_len(const char *str);
|
||||
char *encode(const char *text);
|
||||
|
||||
int decode_len(const char *str);
|
||||
char *decode(const char *data);
|
||||
|
||||
#endif
|
||||
|
||||
#include "br-common.h"
|
Reference in New Issue
Block a user