Welcome to mirror list, hosted at ThFree Co, Russian Federation.

string.h « base « src - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b8ba332231112e6232f1f0f1045c71e8be737d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * \file   string.h
 * \brief  Dynamic string handling.
 * \author Copyright (c) 2007-2008 Jason Perkins and the Premake project
 *
 * \defgroup string Strings
 * \ingroup  base
 *
 * A dynamic string class.
 *
 * @{
 */
#if !defined(PREMAKE_STRING_H)
#define PREMAKE_STRING_H

DECLARE_CLASS(String);

String      string_create(const char* value);
void        string_destroy(String str);
const char* string_cstr(String str);

#endif
/** @} */