- broken - reimplementing z85 decoder, using hyphens again, doesn't work yet...

This commit is contained in:
git@daemon.de
2014-03-01 11:58:10 +01:00
parent 32b24a08c5
commit b8552af5e9
11 changed files with 363 additions and 68 deletions

View File

@@ -31,9 +31,9 @@ char *_lc(char *in) {
}
/* find the offset of the beginning of a certain string within binary data */
size_t _findoffset(byte *bin, size_t binlen, char *sigstart, size_t hlen) {
long int _findoffset(byte *bin, size_t binlen, char *sigstart, size_t hlen) {
size_t i;
size_t offset = 0;
long int offset = 0;
int m = 0;
for(i=0; i<binlen-hlen; ++i) {