drop str_[n]cat.
[apps/madmutt.git] / lib-lib / str.c
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  *
17  *  Copyright © 2006 Pierre Habouzit
18  */
19
20 #include "macros.h"
21 #include "str.h"
22
23 ssize_t m_strcpy(char *dst, ssize_t n, const char *src)
24 {
25     ssize_t len = m_strlen(src);
26
27     if (dst && n > 0) {
28         ssize_t dlen = MIN(n - 1, len);
29         memcpy(dst, src, dlen);
30         dst[dlen] = '\0';
31     }
32
33     return len;
34 }
35
36 ssize_t m_strncpy(char *dst, ssize_t n, const char *src, ssize_t l)
37 {
38     ssize_t len = MIN(m_strlen(src), l);
39
40     if (dst && n > 0) {
41         ssize_t dlen = MIN(n - 1, len);
42         memcpy(dst, src, dlen);
43         dst[dlen] = '\0';
44     }
45
46     return len;
47 }