{
typedef struct { //Not class cuz not needed
char *data; //Byte buffer
long length; //Length of file
} fileinfo_t; //Name of struct, i just do this for making code short
bool exists(const char *filename); //Does file exists?
fileinfo_t readBytes(const char *filename); //Read all file to bytes
}
}
и что поменяется если просто struct fileinfo_t { ... }; написать?
Обсуждают сегодня