1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-20 09:04:43 +00:00
QB64-PE/internal/c/libqb/include/hexoctbin.h
2024-02-18 16:08:38 -05:00

12 lines
319 B
C

#pragma once
#include <stdint.h>
#include "qbs.h"
qbs *func__bin(int64_t value, int32_t neg_bits);
qbs *func__bin_float(long double value);
qbs *func_oct(int64_t value, int32_t neg_bits);
qbs *func_oct_float(long double value);
qbs *func_hex(int64_t value, int32_t neg_size);
qbs *func_hex_float(long double value);