File: vf_strings.c

package info (click to toggle)
libvformat 1.13-10
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 2,248 kB
  • ctags: 1,211
  • sloc: sh: 6,645; ansic: 4,203; makefile: 42
file content (471 lines) | stat: -rw-r--r-- 11,006 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
/******************************************************************************

    (C) Nick Marley, 2001 -

    This software is distributed under the GNU Lesser General Public Licence.
    Please read and understand the comments at the top of vf_iface.h before use!

FILE
    $Workfile$
    $Revision: 1.9 $
    $Author: tilda $
         
ORIGINAL AUTHOR
    Nick Marley

DESCRIPTION
    String handling functions.  The library uses the p_ functions (where hopefully
    the 'p' stands for 'portable') and they are provided here in terms of C runtime
    functions or implemented explicitly.

REFERENCES
    (none)    

MODIFICATION HISTORY
 *  $Log: vf_strings.c,v $
 *  Revision 1.9  2002/11/15 09:15:00  tilda
 *  IID638823 - Various portability issues.
 *
 *  Revision 1.8  2002/10/26 16:09:23  tilda
 *  IID629125 - Ensure string functions used are portable.
 *
 *  Revision 1.7  2002/10/08 21:45:07  tilda
 *  IID620473 - reduce c-runtime dependencies.
 *
 *  Revision 1.6  2002/10/08 21:11:36  tilda
 *  Remove common.h.
 *
 *  Revision 1.5  2001/11/05 21:07:19  tilda
 *  Various changes for initial version of vfedit.
 *
 *  Revision 1.4  2001/10/14 20:42:37  tilda
 *  Addition of group searching.
 *
 *  Revision 1.3  2001/10/13 16:22:08  tilda
 *  Introduce VBINDATA_T and VOBJDATA_T to tidy up internals.
 *
 *  Revision 1.2  2001/10/13 14:58:56  tilda
 *  Tidy up version headers, add vf_strings.h where needed.
 *
 *  Revision 1.1  2001/10/13 14:50:33  tilda
 *  Add string array code to unify handling of names / values.
 * 
 *******************************************************************************/

#ifndef NORCSID
static const char vf_strings_c_vss_id[] = "$Header: /cvsroot/vformat/src/vformat/src/vf_strings.c,v 1.9 2002/11/15 09:15:00 tilda Exp $";
#endif

/*=============================================================================*
 ANSI C & System-wide Header Files
 *=============================================================================*/


#include <ctype.h>
#include <string.h>

/*============================================================================*
 Interface Header Files
 *============================================================================*/

#include "vformat/vf_iface.h"

/*============================================================================*
 Local Header File
 *============================================================================*/

#include "vf_config.h"
#include "vf_internals.h"
#include "vf_strings.h"

/*============================================================================*
 Public Data
 *============================================================================*/
/* None */

/*============================================================================*
 Private Defines
 *============================================================================*/


/*============================================================================*
 Private Data Types
 *============================================================================*/
/* None */

/*============================================================================*
 Private Function Prototypes
 *============================================================================*/
/* None */

/*============================================================================*
 Private Data
 *============================================================================*/
/* None */

/*============================================================================*
 Public Function Implementations
 *============================================================================*/


/*----------------------------------------------------------------------------*
 * NAME
 *      p_strlen()
 * 
 * DESCRIPTION
 *      Find length of string.
 *
 * RETURNS
 *      Length of strings.
 *----------------------------------------------------------------------------*/

int p_strlen(
    const char *p_string                /* String to measure */
    )
{
#if defined(HAVE_STRLEN)
    return strlen(p_string);
#else
    int len = 0;
    
    while (*p_string)
    {
        p_string++;
        len++;
    }

    return len;
#endif
}





/*----------------------------------------------------------------------------*
 * NAME
 *      p_strcpy()
 * 
 * DESCRIPTION
 *      Copy string to buffer.
 *
 * RETURNS
 *      Pointer to buffer.
 *----------------------------------------------------------------------------*/

char *p_strcpy(
    char *p_string1,                /* Buffer to copy to */
    const char *p_string2           /* String to copy */
    )
{
#if defined(HAVE_STRCPY)
    return strcpy(p_string1, p_string2);
#else
  char *p_return = p_string1;

  while ((*p_string1++ = *p_string2++))
    ;

  return p_return;
#endif
}






/*----------------------------------------------------------------------------*
 * NAME
 *      p_strcmp()
 * 
 * DESCRIPTION
 *      Case sensitive string comparison.
 *
 * RETURNS
 *      0<=>strings match, !=0 else.
 *----------------------------------------------------------------------------*/

int p_strcmp(
    const char *p_string1,
    const char *p_string2
    )
{
#if defined(HAVE_STRCMP)
    return strcmp(p_string1, p_string2);
#else
    while (*p_string1 && (*p_string1 == *p_string2))
    {
        p_string1++;
        p_string2++;
    }

    return (*(unsigned char *)p_string1) - (*(unsigned char *)p_string2);    
#endif
}






/*----------------------------------------------------------------------------*
 * NAME
 *      p_strcat()
 * 
 * DESCRIPTION
 *      Append one string to another.
 *
 * RETURNS
 *      Pointer to resulting string.
 *----------------------------------------------------------------------------*/

char *p_strcat(
    char *p_string1,                /* String to append to */
    const char *p_string2           /* String to append */
    )
{
#if defined(HAVE_STRCAT)
    return strcat(p_string1, p_string2);
#else
    char *p_return = p_string1;

    while (*p_string1)
        p_string1++;

    while ((*p_string1++ = *p_string2++))
        ;

    return p_return;
#endif
}






/*----------------------------------------------------------------------------*
 * NAME
 *      p_strstr()
 * 
 * DESCRIPTION
 *      Case sensitive string searching function.
 *
 * RETURNS
 *      Pointer to position "looked for" has been located or NULL if !found.
 *----------------------------------------------------------------------------*/

char *p_strstr(
    const char *p_searched,             /* Buffer searched */
    const char *p_lookedfor             /* String we're looking for */
    )
{
#if defined(HAVE_STRSTR)
    return strstr(p_searched, p_lookedfor);
#else
    if (*p_searched == 0)
    {
        if (*p_lookedfor)
        {
            return (char *)NULL;
        }

        return (char *)p_searched;
    }

    while (*p_searched)
    {
        uint32_t i;

        for (i = 0;;i++)
        {
            if (p_lookedfor[i] == 0)
            {
                return (char *)p_searched;
            }

            if (p_lookedfor[i] != p_searched[i])
            {
                break;
            }
        }

        p_searched++;
    }

    return (char *)NULL;
#endif
}






/*----------------------------------------------------------------------------*
 * NAME
 *      p_stricmp()
 * 
 * DESCRIPTION
 *      Case insensitive string comparison function.
 *
 * RETURNS
 *      0<=>strings match, !=0 else.
 *----------------------------------------------------------------------------*/

int p_stricmp(
    const char *p_string1,          /* First string */
    const char *p_string2           /* Second string */
    )
{
#if defined(HAVE_STRCASECMP)
    return strcasecmp(p_string1, p_string2);
#elif defined(HAVE_STRICMP)
    return stricmp(p_string1, p_string2);
#else
    while (*p_string1 && (tolower(*p_string1) == tolower(*p_string2)))
    {
        p_string1++;
        p_string2++;
    }

    return tolower(*(unsigned char *)p_string1) - tolower(*(unsigned char *)p_string2);
#endif
}







/*----------------------------------------------------------------------------*
 * NAME
 *      p_stristr()
 * 
 * DESCRIPTION
 *      Case insensitive string searching function.
 *
 * RETURNS
 *      Pointer to position "looked for" has been located or NULL if !found.
 *----------------------------------------------------------------------------*/

char *p_stristr(
    const char *p_searched,             /* Buffer searched */
    const char *p_lookedfor             /* String we're looking for */
    )
{
#if defined(HAVE_STRISTR)
    return strstr(p_searched, p_lookedfor);
#else
    if (*p_searched == 0)
    {
        if (*p_lookedfor)
        {
            return (char *)NULL;
        }

        return (char *)p_searched;
    }

    while (*p_searched)
    {
        uint32_t i;

        for (i = 0;;i++)
        {
            if (p_lookedfor[i] == 0)
            {
                return (char *)p_searched;
            }

            if (tolower(p_lookedfor[i]) != tolower(p_searched[i]))
            {
                break;
            }
        }

        p_searched++;
    }

    return (char *)NULL;
#endif
}






/*----------------------------------------------------------------------------*
 * NAME
 *      p_memcpy()
 * 
 * DESCRIPTION
 *      Copy characetrs between buffers.  No checks on overlap.
 *
 * RETURNS
 *      (none)
 *----------------------------------------------------------------------------*/

void p_memcpy(
    void *p_destination,            /* Pointer to buffer */
    const void *p_source,           /* Source of copy */
    uint32_t length                 /* Number of characters to copy */
    )
{
#if defined(HAVE_MEMCPY)
    memcpy(p_destination, p_source, length);
#else
    uint8_t *p_dst = (uint8_t *)p_destination;
    uint8_t *p_src = (uint8_t *)p_source;

    while (length--)
    {
        *p_dst++ = *p_src++;
    }
#endif
}






/*----------------------------------------------------------------------------*
 * NAME
 *      p_memset()
 * 
 * DESCRIPTION
 *      Fill buffer with indicated character.
 *
 * RETURNS
 *      (none)
 *----------------------------------------------------------------------------*/

void p_memset(
    void *p_destination,            /* Pointer to buffer */
    uint8_t v,                      /* Character to fill with */
    uint32_t length                 /* Length of buffer to set */
    )
{
#if defined(HAVE_MEMSET)
    memset(p_destination, v, length);
#else
    uint8_t *p_dst = (uint8_t *)p_destination;

    while (length--)
        *p_dst++ = v;
#endif
}

    
/*============================================================================*
 Private Function Implementations
 *============================================================================*/
/* None */

/*============================================================================*
 End Of File
 *============================================================================*/