1
0
mirror of https://git.code.sf.net/p/zint/code synced 2025-12-18 02:17:06 +00:00

Free bitmap structure, add clear option, correct KIX Code and fix spelling mistake.

This commit is contained in:
hooper114
2009-12-02 09:09:45 +00:00
parent f200517593
commit b24cf09fe7
5 changed files with 31 additions and 10 deletions

View File

@@ -23,7 +23,7 @@
#include <stdlib.h>
#include "common.h"
const int ustrlen(unsigned char data[]) {
int ustrlen(unsigned char data[]) {
/* Local replacement for strlen() with unsigned char strings */
int i;
for (i=0;data[i];i++);