Skip to content

Instantly share code, notes, and snippets.

View m1nuz's full-sized avatar

Mykhailo Piddubnyi m1nuz

View GitHub Profile
@m1nuz
m1nuz / rwtext.c
Last active August 29, 2015 14:09 — forked from snipsnipsnip/rwgetc.c
// feof equivalent for SDL_rwops
int rweof(SDL_RWops *ctx) {
return SDL_RWsize(ctx) == SDL_RWtell(ctx);
}
// fgetc equivalent for SDL_rwops
int rwgetc(SDL_RWops *rw) {
char c;
return SDL_RWread(rw, &c, 1, 1) == 1 ? c : EOF;