Changeset fb1747
- Timestamp:
- 09/20/09 17:11:03 (3 years ago)
- Branches:
- master
- Children:
- 4c0fe8
- Parents:
- b6eb8d
- git-author:
- J. A. Bezemer <J.A.Bezemer@…> (09/20/09 17:11:03)
- git-committer:
- Erik Ekman <erik@…> (02/04/12 20:34:03)
- File:
-
- 1 edited
-
src/base32.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/base32.c
r0b280b rfb1747 27 27 static const char cb32[] = 28 28 "abcdefghijklmnopqrstuvwxyz012345"; 29 static const char cb32_ucase[] = 30 "ABCDEFGHIJKLMNOPQRSTUVWXYZ012345"; 29 31 static unsigned char rev32[128]; 30 32 … … 80 82 for (i = 0; i < 32; i++) { 81 83 c = cb32[i]; 84 rev32[(int) c] = i; 85 c = cb32_ucase[i]; 82 86 rev32[(int) c] = i; 83 87 }
Note: See TracChangeset
for help on using the changeset viewer.
