S3_Cpp/Aufg4/CrimeStats.h

14 lines
238 B
C
Raw Normal View History

2024-11-12 09:20:30 +00:00
#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