mystr.c 371 Bytes
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdbool.h>
#include "strarray.h"
#include "mystr.h"

ssize_t mystr_indexof(const char *str, const char sep, size_t start) {
    (void) str;
    (void) sep;
    (void) start;
    return -1;
}

strarray_t *mystr_split(const char *str, const char sep) {
    (void) str;
    (void) sep;
    return NULL;
}