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/file-fields.h

16 lines
398 B
C
Raw Normal View History

2024-02-13 06:21:07 +00:00
#pragma once
#include <stdint.h>
#include "qbs.h"
void lrset_field(qbs *str);
void field_free(qbs *str);
void field_new(int32_t fileno);
void field_update(int32_t fileno);
void lrset_field(qbs *str);
void field_free(qbs *str);
void field_add(qbs *str, int64_t size);
void field_get(int32_t fileno, int64_t offset, int32_t passed);
void field_put(int32_t fileno, int64_t offset, int32_t passed);