| rte_string_fns.h(3) | Library Functions Manual | rte_string_fns.h(3) |
rte_string_fns.h
#include <ctype.h>
#include <stdio.h>
#include <string.h>
#include <rte_common.h>
#include <rte_compat.h>
int rte_strsplit (char *string, int stringlen, char
**tokens, int maxtokens, char delim)
ssize_t rte_strscpy (char *dst, const char *src, size_t dsize)
static __rte_experimental const char * rte_str_skip_leading_spaces
(const char *src)
String-related functions as replacement for libc equivalents
Definition in file rte_string_fns.h.
Takes string 'string' parameter and splits it at character 'delim' up to maxtokens-1 times - to give 'maxtokens' resulting tokens. Like strtok or strsep functions, this modifies its input string, by replacing instances of 'delim' with '\0'. All resultant tokens are returned in the 'tokens' array which must have enough entries to hold 'maxtokens'.
Parameters
Returns
Copy string src to buffer dst of size dsize. At most dsize-1 chars will be copied. Always NUL-terminates, unless (dsize == 0).
Parameters
Returns
Warning
Search for the first non whitespace character.
Parameters
Returns
Definition at line 142 of file rte_string_fns.h.
Generated automatically by Doxygen for DPDK from the source code.
| Version 24.11.3 | DPDK |