File: strfuncs.h

package info (click to toggle)
gpsd 3.17-7
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 40,316 kB
  • sloc: ansic: 46,386; python: 8,444; xml: 7,996; sh: 1,136; perl: 245; cpp: 243; php: 210; makefile: 188
file content (46 lines) | stat: -rw-r--r-- 1,096 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
/*
 * strfuncs.h - string functions
 *
 * This software is distributed under a BSD-style license. See the
 * file "COPYING" in the toop-level directory of the distribution for details.
 */
#ifndef _GPSD_STRFUNCS_H_
#define _GPSD_STRFUNCS_H_

#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
#include "compiler.h"


static inline bool str_starts_with(const char *str, const char *prefix)
{
    return strncmp(str, prefix, strlen(prefix)) == 0;
}


PRINTF_FUNC(3, 4)
static inline void str_appendf(char *str, size_t alloc_size, const char *format, ...)
{
    va_list ap;
    va_start(ap, format);
    (void) vsnprintf(str + strlen(str), alloc_size - strlen(str), format, ap);
    va_end(ap);
}


static inline void str_vappendf(char *str, size_t alloc_size, const char *format, va_list ap)
{
    (void) vsnprintf(str + strlen(str), alloc_size - strlen(str), format, ap);
}


static inline void str_rstrip_char(char *str, char ch)
{
    if (strlen(str) != 0 && str[strlen(str) - 1] == ch) {
        str[strlen(str) - 1] = '\0';
    }
}

#endif /* _GPSD_STRFUNCS_H_ */