~drizzle-trunk/drizzle/development

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* Copyright (c) 2008 PrimeBase Technologies GmbH, Germany
 *
 * PrimeBase Media Stream for MySQL
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *
 * Original author: Paul McCullagh (H&G2JCtL)
 * Continued development: Barry Leslie
 *
 * 2007-05-21
 *
 * CORE SYSTEM:
 * Simple utility functions.
 *
 */

#ifndef __CSUTIL_H__
#define __CSUTIL_H__

using namespace std;

#include "CSDefs.h"

void		cs_strcpy(size_t size, char *d, const char *s, size_t len);
void		cs_strcpy(size_t size, char *d, const char *s);
void		cs_strcpy_left(size_t size, char *d, const char *s, char ch);
void		cs_strcpy_right(size_t size, char *d, const char *s, char ch);
void		cs_strcat(size_t size, char *d, const char *s);
void		cs_strcat_left(size_t size, char *d, const char *s, char ch);
void		cs_strcat_right(size_t size, char *d, const char *s, char ch);
void		cs_strcat(size_t size, char *d, char ch);
void		cs_strcat(char **to, const char *to_cat);
void		cs_strcat(size_t size, char *to, int i);
void		cs_strcat(size_t size, char *to, uint32_t i);
void		cs_strcat(size_t size, char *to, uint64_t i);
void		cs_strcat_hex(size_t size, char *to, uint64_t i);
void		cs_format_context(size_t size, char *buffer, const char *func, const char *file, int line);
char		*cs_last_name_of_path(const char *path, int count);
char		*cs_last_name_of_path(const char *path);
char		*cs_last_directory_of_path(char *path);
const char	*cs_find_extension(const char *file_name);
void		cs_remove_extension(char *file_name);
bool		cs_is_extension(const char *file_name, const char *ext);
bool		cs_remove_dir_char(char *dir_name);
void		cs_remove_last_name_of_path(char *path);
bool		cs_add_dir_char(size_t max, char *path);
bool		cs_is_absolute(const char *path);
void		cs_add_name_to_path(size_t max, char *path, const char *name);
const char	*cs_next_name_of_path(const char *path);
void		cs_adjust_path(size_t max, char *path, const char *rel_path);
char		*cs_strdup(const char *in_str);
char		*cs_strdup(int value);
char		*cs_strdup(const char *in_str, size_t len);
bool		cs_starts_with(const char *cstr, const char *w_cstr);
void		cs_make_absolute_path(size_t max, char *path, const char *rel_path, const char *cwd);
void		cs_replace_string(size_t size, char *into, const char ch, const char *str);
int64_t		cs_str_to_int8(const char *ptr, bool *overflow);
int64_t		cs_byte_size_to_int8(const char *ptr);
uint64_t	cs_str_to_word8(const char *ptr, bool *overflow);
size_t		cs_hex_to_bin(size_t size, void *bin, size_t len, const char *hex);
size_t		cs_bin_to_hex(size_t size, char *hex, size_t len, const void *bin);
void		cs_strToUpper(char *ptr);
void		cs_strToLower(char *ptr);

#endif