Files
TP-C---Not-/auth.h
2026-02-13 13:49:16 +00:00

6 lines
177 B
C++

#ifndef AUTH_H
#define AUTH_H
#include "user.h"
#include <vector>
int authentifier(const std::string& login, const std::string& password, const std::vector<User>& users);
#endif