Browse Source

make some arrays const

this way they'll go into .rodata, decreasing memory pressure.
rs-1.0
rofl0r 13 years ago
parent
commit
c50925071c
  1. 2
      src/crypt/crypt_md5.c
  2. 2
      src/crypt/crypt_sha256.c
  3. 2
      src/crypt/crypt_sha512.c
  4. 2
      src/ctype/iswalpha.c
  5. 2
      src/ctype/iswpunct.c
  6. 4
      src/ctype/wcwidth.c
  7. 2
      src/time/__tm_to_time.c

2
src/crypt/crypt_md5.c

@ -182,7 +182,7 @@ static void md5_update(struct md5 *s, const void *m, unsigned long len)
#define KEY_MAX 30000
#define SALT_MAX 8
static unsigned char b64[] =
static const unsigned char b64[] =
"./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
static char *to64(char *s, unsigned int u, int n)

2
src/crypt/crypt_sha256.c

@ -153,7 +153,7 @@ static void sha256_update(struct sha256 *s, const void *m, unsigned long len)
memcpy(s->buf, p, len);
}
static unsigned char b64[] =
static const unsigned char b64[] =
"./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
static char *to64(char *s, unsigned int u, int n)

2
src/crypt/crypt_sha512.c

@ -174,7 +174,7 @@ static void sha512_update(struct sha512 *s, const void *m, unsigned long len)
memcpy(s->buf, p, len);
}
static unsigned char b64[] =
static const unsigned char b64[] =
"./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
static char *to64(char *s, unsigned int u, int n)

2
src/ctype/iswalpha.c

@ -1,6 +1,6 @@
#include <wctype.h>
static unsigned char table[] = {
static const unsigned char table[] = {
#include "alpha.h"
};

2
src/ctype/iswpunct.c

@ -1,6 +1,6 @@
#include <wctype.h>
static unsigned char table[] = {
static const unsigned char table[] = {
#include "punct.h"
};

4
src/ctype/wcwidth.c

@ -1,10 +1,10 @@
#include <wchar.h>
static unsigned char table[] = {
static const unsigned char table[] = {
#include "nonspacing.h"
};
static unsigned char wtable[] = {
static const unsigned char wtable[] = {
#include "wide.h"
};

2
src/time/__tm_to_time.c

@ -26,7 +26,7 @@ time_t __tm_to_time(struct tm *tm)
z100 = Q(z4, 25);
z400 = Q(z100, 4);
day += year*365 + z4 - z100 + z400 +
month[(int []){0,31,59,90,120,151,181,212,243,273,304,334}];
month[(const int []){0,31,59,90,120,151,181,212,243,273,304,334}];
return (long long)day*86400
+ tm->tm_hour*3600 + tm->tm_min*60 + tm->tm_sec
- -946684800; /* the dawn of time :) */

Loading…
Cancel
Save