Mercurial > hg > Applications > Grep
view regexParser/sequentialSearch.cc @ 309:058c87665213
small fix
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 08 Feb 2016 18:04:28 +0900 |
parents | 63213964502a |
children | c9ac6f06e706 |
line wrap: on
line source
#include <stdio.h> #include <string.h> #include <unistd.h> #include <fcntl.h> #include <sys/stat.h> #include <sys/mman.h> #include "fileread.h" #include "threadedSearch.h" TSValue state0(TSValue ts); #include "state.cc" int main(int argc, char **argv) { char *filename; for (int i = 1; i < argc; i++) { if (strcmp(argv[i],"-file") == 0) { filename = argv[i+1]; i++; } } int fd = 0; st_mmap_t st_mmap = createSt_mmap(filename,fd); Buffer buff = createBuffer(st_mmap); TSValue tsv = createTSValue(NULL,buff); tsv = state0(tsv); close(fd); return 0; } /* end */