Don't exit if there are no more empty slots
[paraslash.git] / string.h
1 /*
2  * Copyright (C) 2006 Andre Noll <maan@systemlinux.org>
3  *
4  *     This program is free software; you can redistribute it and/or modify
5  *     it under the terms of the GNU General Public License as published by
6  *     the Free Software Foundation; either version 2 of the License, or
7  *     (at your option) any later version.
8  *
9  *     This program is distributed in the hope that it will be useful,
10  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *     GNU General Public License for more details.
13  *
14  *     You should have received a copy of the GNU General Public License
15  *     along with this program; if not, write to the Free Software
16  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
17  */
18
19 /** \file string.h exported sybmols from string.c */
20
21 /** contains name/replacement pairs used by s_a_r_list()
22  *
23  * \sa s_a_r()
24  */
25 struct para_macro {
26         /** the name of the macro */
27         const char *name;
28         /** the replacement text */
29         const char *replacement;
30 };
31 __must_check __malloc void *para_realloc(void *p, size_t size);
32 __must_check __malloc void *para_malloc(size_t size);
33 __must_check __malloc void *para_calloc(size_t size);
34 __must_check __malloc char *para_strdup(const char *s);
35 __must_check __malloc __printf_1_2 char *make_message(const char *fmt, ...);
36 __must_check __malloc char *para_strcat(char *a, const char *b);
37 __must_check __malloc char *para_dirname(const char *name);
38 __must_check __malloc char *para_basename(const char *name);
39 __must_check __malloc char *s_a_r(const char *src, const char* regex, const char *replacement);
40 __must_check __malloc char *s_a_r_list(struct para_macro *pm, char *src);
41 void chop(char* buf);
42 __must_check __malloc char *para_tmpname(void);
43 __must_check int para_mkstemp(char *template, mode_t mode);
44 __must_check __malloc char *para_logname(void);
45 __must_check __malloc char *para_homedir(void);
46 __must_check unsigned split_args(char *args, char ***argv_ptr, const char *delim);
47 __malloc char *para_hostname(void);
48 void valid_fd_012(void);
49