2022-06-02 15:51:53 +03:00
|
|
|
/* This software is licensed by the MIT License, see LICENSE file */
|
|
|
|
/* Copyright © 2022 Gregory Lirent */
|
|
|
|
|
|
|
|
#include "../vtype.h"
|
|
|
|
|
|
|
|
#ifndef LIBCDSB_EXTRA_VTYPE_H
|
|
|
|
#define LIBCDSB_EXTRA_VTYPE_H
|
|
|
|
|
2022-08-16 01:36:37 +03:00
|
|
|
extern const char* libcdsb_vtype_name(vtype t) Warn_unused_result__;
|
|
|
|
extern const char* libcdsb_vtype_stringify(const void* value, vtype t) Warn_unused_result__;
|
2022-06-03 19:31:02 +03:00
|
|
|
|
2022-06-02 15:51:53 +03:00
|
|
|
#endif /* LIBCDSB_EXTRA_VTYPE_H */
|