root/test-read-cache.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. main

#include "cache.h"

int main (int argc, char **argv)
{
        int i, cnt = 1;
        if (argc == 2)
                cnt = strtol(argv[1], NULL, 0);
        for (i = 0; i < cnt; i++) {
                read_cache();
                discard_cache();
        }
        return 0;
}

/* [<][>][^][v][top][bottom][index][help] */