]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/inspstring.cpp
Header update: 2007 -> 2008
[user/henk/code/inspircd.git] / src / inspstring.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* $Core: libIRCDstring */
15
16 #include "inspstring.h"
17
18 /*
19  * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
20  * All rights reserved.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the above copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright    
28  *    notice, this list of conditions and the following disclaimer in the  
29  *    documentation and/or other materials provided with the distribution. 
30  * 3. The name of the author may not be used to endorse or promote products
31  *    derived from this software without specific prior written permission.
32  *
33  * THIS SOFTWARE IS PROVIDED `AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
34  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
35  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
36  * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
37  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
38  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
39  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
40  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
41  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
42  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43  */
44  
45 #ifndef HAS_STRLCPY
46 CoreExport size_t strlcat(char *dst, const char *src, size_t siz)
47 {
48         char *d = dst;
49         const char *s = src;
50         size_t n = siz, dlen;
51
52         while (n-- != 0 && *d != '\0')
53                 d++;
54
55         dlen = d - dst;
56         n = siz - dlen;
57
58         if (n == 0)
59                 return(dlen + strlen(s));
60
61         while (*s != '\0')
62         {
63                 if (n != 1)
64                 {
65                         *d++ = *s;
66                         n--;
67                 }
68
69                 s++;
70         }
71
72         *d = '\0';
73         return(dlen + (s - src)); /* count does not include NUL */
74 }
75
76 CoreExport size_t strlcpy(char *dst, const char *src, size_t siz)
77 {
78         char *d = dst;
79         const char *s = src;
80         size_t n = siz;
81
82         /* Copy as many bytes as will fit */
83         if (n != 0 && --n != 0)
84         {
85                 do
86                 {
87                         if ((*d++ = *s++) == 0)
88                                 break;
89                 } while (--n != 0);
90         }
91
92         /* Not enough room in dst, add NUL and traverse rest of src */
93         if (n == 0)
94         {
95                 if (siz != 0)
96                         *d = '\0'; /* NUL-terminate dst */
97                 while (*s++);
98         }
99
100         return(s - src - 1); /* count does not include NUL */
101 }
102 #endif
103
104 CoreExport int charlcat(char* x,char y,int z)
105 {
106         char* x__n = x;
107         int v = 0;
108
109         while(*x__n++)
110                 v++;
111
112         if (v < z - 1)
113         {
114                 *--x__n = y;
115                 *++x__n = 0;
116         }
117
118         return v;
119 }
120
121 CoreExport bool charremove(char* mp, char remove)
122 {
123         char* mptr = mp;
124         bool shift_down = false;
125
126         while (*mptr)
127         {
128                 if (*mptr == remove)
129                 shift_down = true;
130
131                 if (shift_down)
132                         *mptr = *(mptr+1);
133
134                 mptr++;
135         }
136
137         return shift_down;
138 }
139