Skip to content
Snippets Groups Projects
Commit a81474f1 authored by Kia's avatar Kia
Browse files

llu

parent 18e53454
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ int main(int argc, char *argv[]) {
uint8_t bytes = atoi(argv[1]);
uint64_t low = atoi(argv[2]);
uint64_t high = atoi(argv[3]);
printf("LOW = %d\nHIGH=%d\n", low, high);
printf("LOW = %llu\nHIGH=%llu\n", low, high);
struct charset *cs = (struct charset *) calloc(sizeof(struct charset), 1);
for (int i=0; i<256; i++)
......@@ -46,14 +46,8 @@ int main(int argc, char *argv[]) {
}
/* bitmap-ism */
/*
void gen_int_range(uint64_t low, uint64_t high, uint8_t bytes) {
/* Possible FIXME: TallerThanMe * /
// Possible FIXME: TallerThanMe
if (1 == bytes) {
HCharset cs = new_charset(mm__);
for (uint64_t i=low; i<=high; ++i) {
......@@ -102,5 +96,3 @@ void gen_int_range(uint64_t low, uint64_t high, uint8_t bytes) {
}
}
*/
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment