Fix typo in Read, Write and Peek functions signatures
All checks were successful
CI / build-and-analyze (push) Successful in 1m0s

This commit is contained in:
2026-07-26 19:22:05 +03:00
parent ee0fe4ff2d
commit 7e97383d0d
4 changed files with 8 additions and 8 deletions

2
File.c
View File

@@ -14,7 +14,7 @@ int CgeFileEndOfFile(CgeFile *file) {
return flags & CGE_FILE_EOF;
}
int CgeFilePeek(CgeFile *file, char *buffer, size_t size, size_t *actual) {
int CgeFilePeek(CgeFile *file, void *buffer, size_t size, size_t *actual) {
int64_t pos;
size_t n = 0;