You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef __brados_string_h__ |
|
#define __brados_string_h__ |
|
|
|
#include <stddef.h> |
|
|
|
int strindexof(char c, const char *str); |
|
size_t strlen(const char *str); |
|
|
|
#endif
|
|
|