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

buffers.h « base « src - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5bb058c4af767e6d80f14d0cd3bf1cbedda3dbdb (plain)
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
/**
 * \file   buffers.h
 * \brief  Shared working buffer system.
 * \author Copyright (c) 2007-2008 Jason Perkins and the Premake project
 *
 * \defgroup buffers Buffers
 * \ingroup  base
 *
 * A shared working buffer collection. A buffer can be requested from the system, filled,
 * and passed around for a short period of time. This system allows transient string values
 * to be returned from functions and immediately used without having to resort to
 * full-blown string objects, and the ownership issues that would entail.
 *
 * @{
 */
#if !defined(PREMAKE_BUFFER_H)
#define PREMAKE_BUFFER_H

extern const int BUFFER_SIZE;

char* buffers_next(void);

#endif
/** @} */