Fix typo in Read, Write and Peek functions signatures
All checks were successful
CI / build-and-analyze (push) Successful in 1m0s
All checks were successful
CI / build-and-analyze (push) Successful in 1m0s
This commit is contained in:
@@ -45,10 +45,10 @@ typedef struct CgeFile CgeFile;
|
||||
|
||||
CgeFile *CgeFileNew(const char *path, int mode, int *result);
|
||||
void CgeFileFree(CgeFile *file);
|
||||
int CgeFileRead(CgeFile *file, char *buffer, size_t size, size_t *actual);
|
||||
int CgeFileWrite(CgeFile *file, const char *buffer, size_t size,
|
||||
int CgeFileRead(CgeFile *file, void *buffer, size_t size, size_t *actual);
|
||||
int CgeFileWrite(CgeFile *file, const void *buffer, size_t size,
|
||||
size_t *actual);
|
||||
int CgeFilePeek(CgeFile *file, char *buffer, size_t size, size_t *actual);
|
||||
int CgeFilePeek(CgeFile *file, void *buffer, size_t size, size_t *actual);
|
||||
int CgeFileTell(CgeFile *file, int64_t *offset);
|
||||
int CgeFileSeek(CgeFile *file, int64_t offset, int whence);
|
||||
int CgeFileFlush(CgeFile *file);
|
||||
|
||||
Reference in New Issue
Block a user