|
Banjo API 0.0.1
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 |
Calculate the length of a null-terminated string.
Wrapper around the standard C library strlen function.
| s | Pointer to a null-terminated string. |