C and C++ web framework.
http://rapida.vilor.one/docs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
312 B
13 lines
312 B
/* SPDX-License-Identifier: GPL-3.0-or-later */ |
|
/* Copyright 2022 Ivan Polyakov */ |
|
|
|
#ifndef RAPIDA_UTILS_H_ENTRY |
|
#define RAPIDA_UTILS_H_ENTRY |
|
|
|
int count_char_entries(const char *str, char ch); |
|
|
|
char *rpd_strdup(const char *src); |
|
|
|
char *rpd_strsep(char **str, const char *sep); |
|
|
|
#endif /* RAPIDA_UTILS_H_ENTRY */
|
|
|