mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-26 20:40:28 +00:00
Remove bool from public headers
This commit is contained in:
parent
dffee606cf
commit
1351d3cede
55 changed files with 105 additions and 98 deletions
|
@ -22,7 +22,7 @@
|
|||
/**
|
||||
* Checks if string starts with prefix, case insensitively.
|
||||
*/
|
||||
bool startswithi(const char *s, const char *prefix) {
|
||||
bool32 startswithi(const char *s, const char *prefix) {
|
||||
for (;;) {
|
||||
if (!*prefix) return true;
|
||||
if (!*s) return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue