33 lines
1001 B
C
33 lines
1001 B
C
/********************************************************************
|
|
** Copyright (c) 2018-2020 Guan Wenliang
|
|
** This file is part of the Berry default interpreter.
|
|
** skiars@qq.com, https://github.com/Skiars/berry
|
|
** See Copyright Notice in the LICENSE file or at
|
|
** https://github.com/Skiars/berry/blob/master/LICENSE
|
|
********************************************************************/
|
|
#ifndef BE_STRLIB_H
|
|
#define BE_STRLIB_H
|
|
|
|
#include "be_object.h"
|
|
#include <stdarg.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
bstring* be_strcat(bvm *vm, bstring *s1, bstring *s2);
|
|
int be_strcmp(bstring *s1, bstring *s2);
|
|
bstring* be_num2str(bvm *vm, bvalue *v);
|
|
void be_val2str(bvm *vm, int index);
|
|
size_t be_strlcpy(char *dst, const char *src, size_t size);
|
|
const char* be_splitpath(const char *path);
|
|
const char* be_splitname(const char *path);
|
|
const char* be_pushvfstr(bvm *vm, const char *format, va_list arg);
|
|
bstring* be_strindex(bvm *vm, bstring *str, bvalue *idx);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|