NEWS update
[paraslash.git] / string.h
1 /*
2  * Copyright (C) 2006-2007 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 __must_check __malloc void *para_realloc(void *p, size_t size);
22 __must_check __malloc void *para_malloc(size_t size);
23 __must_check __malloc void *para_calloc(size_t size);
24 __must_check __malloc char *para_strdup(const char *s);
25 __must_check __malloc __printf_1_2 char *make_message(const char *fmt, ...);
26 __must_check __malloc char *para_strcat(char *a, const char *b);
27 __must_check __malloc char *para_dirname(const char *name);
28 __must_check __malloc char *para_basename(const char *name);
29 void chop(char* buf);
30 __must_check __malloc char *para_tmpname(void);
31 __must_check int para_mkstemp(char *template, mode_t mode);
32 __must_check __malloc char *para_logname(void);
33 __must_check __malloc char *para_homedir(void);
34 __must_check unsigned split_args(char *args, char ***argv_ptr, const char *delim);
35 __malloc char *para_hostname(void);
36 void valid_fd_012(void);
37