Files
CoursCPP/TP7/getio.h
2024-11-26 20:38:50 +01:00

10 lines
161 B
C++

#pragma once
#include <fstream>
using namespace std;
void getfloat(ifstream& s, float& f, const char sep);
void getint(ifstream& s, int& f, const char sep);