handmade/include/FileIO.h
Bubblegumdrop 9e957d466f Client and Server tweaks. This commit breaks the Client.
Server listens correctly with threads and stdin reader thread.

Client does nothing currently gutting UDP_Write for a UDPbase class
introduced in this commit.
2022-01-08 18:59:40 -05:00

34 lines
676 B
C++

#pragma once
#ifndef _FILE_OFFSET_BITS
#define _FILE_OFFSET_BITS 64 /* off_t */
#endif
#ifndef _POSIX_C_SOURCE
#define _POSIX_C_SOURCE 200112L
#endif
#include <ctime>
#include <string>
class FileIO
{
FILE* fp;
std::string path;
public:
FileIO (FILE* f);
FileIO (const std::string&, const std::string&);
~FileIO (void);
FILE *Open (const std::string&, const std::string&);
int Close (void);
int Seek (const off_t, const int);
off_t Tell (void);
size_t Read (void *, const size_t);
size_t Write (const void *, const size_t);
void Rewind (void);
/* I added these. */
time_t Mtime (void);
off_t Size (void);
std::string ReadToString (void);
};