mirror of
https://github.com/pocketpy/pocketpy
synced 2025-11-08 20:50:16 +00:00
make pkpy_Str__take_buf hidden
This commit is contained in:
parent
8ad42752b2
commit
b4198bb448
@ -34,7 +34,6 @@ inline int pkpy_Str__size(const pkpy_Str* self){
|
||||
int pkpy_utils__u8_header(unsigned char c, bool suppress);
|
||||
void pkpy_Str__ctor(pkpy_Str* self, const char* data);
|
||||
void pkpy_Str__ctor2(pkpy_Str* self, const char* data, int size);
|
||||
void pkpy_Str__take_buf(pkpy_Str *self, char *data, int size);
|
||||
void pkpy_Str__dtor(pkpy_Str* self);
|
||||
pkpy_Str pkpy_Str__copy(const pkpy_Str* self);
|
||||
pkpy_Str pkpy_Str__concat(const pkpy_Str* self, const pkpy_Str* other);
|
||||
|
||||
@ -4,6 +4,8 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
void pkpy_Str__take_buf(pkpy_Str *self, char *data, int size);
|
||||
|
||||
void pkpy_SourceData__ctor(struct pkpy_SourceData* self,
|
||||
const char* source,
|
||||
int source_size,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user