blob: 2b24f6d7ff7c072c5bac40f8061f359e5c5f5d97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#include<assert.h>
#include<cstdlib>
#include<cstring>
#include<vector>
using std::vector;
#include<list>
using std::list;
#include<utility>
using std::pair;
#include<string>
using std::string;
const size_t NOT_FOUND = string::npos;
#include<iostream>
using std::istream;
using std::ostream;
using std::cin;
using std::cout;
using std::cerr;
#include<sstream>
using std::istringstream;
using std::ostringstream;
#include<fstream>
using std::ifstream;
#include <locale>
using std::isspace; // unicode-aware
#include "type_list"
#include "function_list"
#include "file_list"
#include "test_file_list"
|