|
Banjo API 1.0.0-rc.2
Low-level C99 game development API
|
Macros | |
| #define | bj_strlen strlen |
| #define | bj_strcmp strcmp |
Lightweight wrappers around standard C string functions.
This module provides banjo-prefixed aliases for common string operations from the C standard library. These macros maintain API consistency while delegating to the standard implementations.
| #define bj_strcmp strcmp |
Compare two null-terminated strings lexicographically.
Wrapper around the standard C library strcmp function.
| s1 | Pointer to the first null-terminated string. |
| s2 | Pointer to the second null-terminated string. |
| #define bj_strlen strlen |