General Purpose library for Freestanding C++ and POSIX systems
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
#pragma once
|
|
|
|
#include "gp/containers/vector.hpp"
|
|
#include "gp/dynamic/compiler/type/type.hpp"
|
|
#include "gp/utils/allocators/allocator.hpp"
|
|
|
|
using string = gp::vector<char>;
|
|
|
|
string grMangleFunction(gp::vector<gr_type>, gp::allocator&);
|
|
gp::vector<gr_type> grUnmangleSignature(string, gp::allocator&);
|