ze-filter  (ze-filter-0.8.0-develop-180218)
zeString.h
Go to the documentation of this file.
1 /*
2  *
3  * ze-filter - Mail Server Filter for sendmail
4  *
5  * Copyright (c) 2001-2018 - Jose-Marcio Martins da Cruz
6  *
7  * Auteur : Jose Marcio Martins da Cruz
8  * jose.marcio.mc@gmail.com
9  *
10  * Historique :
11  * Creation : Wed Nov 29 10:19:07 CET 2017
12  *
13  * This program is free software - GPL v2.,
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18  *
19  */
20 
21 
22 #ifndef __ZE_STRING_H
23 
24 size_t zeStrlCat(char *, const char *, size_t);
25 size_t zeStrlCpy(char *, const char *, size_t);
26 
27 #ifndef HAVE_STRLCAT
28 # define strlcat zeStrlCat
29 #endif
30 
31 #ifndef HAVE_STRLCPY
32 # define strlcpy zeStrlCpy
33 #endif
34 
35 # define __ZE_STRING_H 1
36 #endif /* __ZE_STRING_H */
37 
size_t zeStrlCat(char *, const char *, size_t)
Definition: zeString.c:68
size_t zeStrlCpy(char *, const char *, size_t)
Definition: zeString.c:114