|
libft
|
Utility functions to skip leading whitespace in C strings. More...
#include "libft.h"
Include dependency graph for skip_whitespace.c:Functions | |
| void | skip_whitespace_index (const char *input, int *i) |
| Skips leading whitespace by incrementing a pointer index. | |
| char * | skip_whitespace_ptr (const char *s) |
| Returns a pointer to the first non-whitespace character. | |
Utility functions to skip leading whitespace in C strings.
This file implements helper functions for parsing strings by skipping over leading whitespace characters. It provides both pointer-based and index-based variants to accommodate different parsing use cases.