]> arthur.barton.de Git - ngircd-alex.git/blob - src/portab/strlcpy.c
ce90a423ad19b7af2158ccad1463db6aa67a1c09
[ngircd-alex.git] / src / portab / strlcpy.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2005 Alexander Barton (alex@barton.de)
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * Please read the file COPYING, README and AUTHORS for more information.
10  */
11
12 #include "portab.h"
13
14 /**
15  * @file
16  * strlcpy() and strlcat() replacement functions.
17  *
18  * See <http://www.openbsd.org/papers/strlcpy-paper.ps> for details.
19  *
20  * Code partially borrowed from compat.c of rsync, written by Andrew
21  * Tridgell (1998) and Martin Pool (2002):
22  * <http://cvs.samba.org/cgi-bin/cvsweb/rsync/lib/compat.c>
23  */
24
25 #include "imp.h"
26 #include <string.h>
27 #include <sys/types.h>
28
29 #include "exp.h"
30
31
32 #ifndef HAVE_STRLCAT
33
34 GLOBAL size_t
35 strlcat( char *dst, const char *src, size_t size )
36 {
37         /* Like strncat() but does not 0 fill the buffer and
38          * always null terminates. */
39
40         size_t len1 = strlen( dst );
41         size_t len2 = strlen( src );
42         size_t ret = len1 + len2;
43
44         if( size && ( len1 < size - 1 )) {
45                 if( len2 >= size - len1 )
46                         len2 = size - len1 - 1;
47                 memcpy( dst + len1, src, len2 );
48                 dst[len1 + len2] = 0;
49         }
50         return ret;
51 } /* strlcat */
52
53 #endif
54
55 #ifndef HAVE_STRLCPY
56
57 GLOBAL size_t
58 strlcpy( char *dst, const char *src, size_t size )
59 {
60         /* Like strncpy but does not 0 fill the buffer and
61          * always null terminates. */
62
63         size_t len = strlen( src );
64         size_t ret = len;
65
66         if( size > 0 ) {
67                 if( len >= size ) len = size - 1;
68                 memcpy( dst, src, len );
69                 dst[len] = 0;
70         }
71         return ret;
72 } /* strlcpy */
73
74 #endif
75
76 /* -eof- */