libscratchcpp
A library for C++ based Scratch project players
Loading...
Searching...
No Matches
string_pool.h
Go to the documentation of this file.
1// SPDX-License-Identifier: Apache-2.0
2
3#pragma once
4
5#include "global.h"
6
7namespace libscratchcpp
8{
9
10struct StringPtr;
11
12extern "C"
13{
16}
17
18} // namespace libscratchcpp
#define LIBSCRATCHCPP_EXPORT
Definition global.h:17
The main namespace of the library.
Definition asset.h:10
LIBSCRATCHCPP_EXPORT void string_pool_free(StringPtr *str)
Definition string_pool.cpp:44
LIBSCRATCHCPP_EXPORT StringPtr * string_pool_new()
Definition string_pool.cpp:24
The StringPtr struct holds a string data pointer and string size.
Definition stringptr.h:14