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