util.*.c: Add static qualifiers everywhere

This commit is contained in:
Emmanuel Gil Peyrot 2019-12-01 20:25:20 +01:00
parent 8613dc1739
commit a149dda0e3
6 changed files with 47 additions and 52 deletions

View file

@ -35,8 +35,8 @@ typedef unsigned __int32 uint32_t;
#define HMAC_IPAD 0x36363636
#define HMAC_OPAD 0x5c5c5c5c
const char *hex_tab = "0123456789abcdef";
void toHex(const unsigned char *in, int length, unsigned char *out) {
static const char *hex_tab = "0123456789abcdef";
static void toHex(const unsigned char *in, int length, unsigned char *out) {
int i;
for(i = 0; i < length; i++) {