blob: 7c16318f8cbe354a74c639002dea4552d0c38ca1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Copyright (c) 2023 Egor Tensin <egor@tensin.name>
* This file is part of the "cimple" project.
* For details, see https://github.com/egor-tensin/cimple.
* Distributed under the MIT License.
*/
#ifndef __STRING_H__
#define __STRING_H__
/* For details, see string_copying(7). */
char *stpecpy(char *dst, char *end, const char *src);
int string_to_int(const char *src, int *result);
#endif
|