OSDN Git Service

VER0.1.0 final?
[lib1stclass/main.git] / 1stclass.h
1 /*
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright: 2010- 1stclass.co.jp.  All rights reserved.
5 *
6 * Created by Hajime Kurita
7 */
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11
12 int host2ip(const char *server, char *ip);
13 int is_num(const char *moji);
14 int itoa(int n, char s[]);
15 int reverse_char(char s[]);
16 int rmkdir(const char *check_dir);
17 int rel2abs(const char *rel_path, char *abs_path);
18 int remove_path(const char *path);
19 int remove_not_file_char(const char *str, char *dst);
20 int safe_strcat(char *dst, const char *append);
21 int safe_strncat(char *dst, const char *append, const unsigned int len);
22 int shmf(const char *file, char *shmfile);
23
24 #ifdef __cplusplus
25 };
26 #endif