comparison th_ioctx_stdio.c @ 735:31bc1ed07cf5

Renaming BOOL->bool and TRUE/FALSE to true/false, and using stdbool.h if available.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 07 Dec 2022 12:14:39 +0200
parents 29e44a58bc73
children 6b778871f770
comparison
equal deleted inserted replaced
734:2ae1045f6c18 735:31bc1ed07cf5
79 ctx->size = fileSize; 79 ctx->size = fileSize;
80 return fileSize; 80 return fileSize;
81 } 81 }
82 82
83 83
84 static BOOL th_stdio_feof(th_ioctx *ctx) 84 static bool th_stdio_feof(th_ioctx *ctx)
85 { 85 {
86 return feof(CTX_FH); 86 return feof(CTX_FH);
87 } 87 }
88 88
89 89