util.h 256 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef TRAFT_UTIL_H
#define TRAFT_UTIL_H

#ifdef __cplusplus
extern "C" {
#endif

#include "common.h"

int dirOK(const char *path);
int splitString(const char *str, char *separator, char (*arr)[TOKEN_LEN], int n_arr);

#ifdef __cplusplus
}
#endif

#endif