14 lines
238 B
C
14 lines
238 B
C
|
#ifndef CRIMESTATS_H
|
||
|
#define CRIMESTATS_H
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
void split(const std::string& s, char c,std::vector<std::string>& v);
|
||
|
|
||
|
void Aufg4Main();
|
||
|
|
||
|
std::string readFile(std::string &filename);
|
||
|
|
||
|
|
||
|
#endif //CRIMESTATS_H
|