X-Git-Url: https://secure.softndesign.org/git/?a=blobdiff_plain;f=code.h;fp=code.h;h=684745bde13928e300572a57cc1154fc14ba2f08;hb=92fc2c44fc12524b636ed9778b26c91f6bedad59;hp=ce9820b246ea7d2af8104a7f977eba16f2f4b8fd;hpb=bf1d9554eacc69d63395de06a50d6b002e0d6b45;p=compress.git diff --git a/code.h b/code.h index ce9820b..684745b 100644 --- a/code.h +++ b/code.h @@ -1,8 +1,6 @@ #ifndef __CODE_H__ #define __CODE_H__ -#include - #define NB_BYTES 256 /* byte type */ @@ -15,9 +13,9 @@ typedef struct { char code[NB_BYTES - 1 + 1]; } code_t; -int codcat (char *dst, size_t n, char *src); +int codcat (char *dst, int n, char *src); int codcmp (char *cod1, char *cod2); -int codcpy (char *dst, size_t n, char *src); +int codcpy (char *dst, int n, char *src); int codlen (char *code); #endif /* __CODE_H__ */