15 lines
249 B
C++
15 lines
249 B
C++
|
|
#include <iostream>
|
||
|
|
#include <stdint.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
#include <vector>
|
||
|
|
#include <sys/time.h>
|
||
|
|
|
||
|
|
#include "common.h"
|
||
|
|
using namespace std;
|
||
|
|
|
||
|
|
int main(int argc, char **argv)
|
||
|
|
{
|
||
|
|
// main_sa(argc, argv);
|
||
|
|
main_fmtidx(argc, argv);
|
||
|
|
return 0;
|
||
|
|
}
|