From 32c87c97dda9af19ff0994d160504316a1dcbc66 Mon Sep 17 00:00:00 2001 From: Liuhua Date: Tue, 7 Jun 2022 06:57:36 +0000 Subject: [PATCH] =?UTF-8?q?CI=E6=B5=8B=E8=AF=95=E5=8D=95=EF=BC=8C=E8=AF=B7?= =?UTF-8?q?=E5=8B=BF=E5=90=88=E5=85=A5!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test0607.c | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 test0607.c diff --git a/test0607.c b/test0607.c new file mode 100644 index 0000000..9e4e047 --- /dev/null +++ b/test0607.c @@ -0,0 +1,38 @@ +/* + *Tencent is pleased to support the open source community by making xLua available. + *Copyright (C) 2016 THL A29 Limited, a Tencent company. All rights reserved. + *Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at + *http://opensource.org/licenses/MIT + *Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. +*/ +#ifndef I64LIB_H +#define I64LIB_H + +#include +#include "lua.h" +#include "lauxlib.h" +#include "lualib.h" + +#ifdef __cplusplus + +#if __cplusplus +extern "C"{ +#endif +#endif /* __cplusplus */ + +LUALIB_API void lua_pushint64(lua_State* L, int64_t n); +LUALIB_API void lua_pushuint64(lua_State* L, uint64_t n); + +LUALIB_API int lua_isint64(lua_State* L, int pos); +LUALIB_API int lua_isuint64(lua_State* L, int pos); + +LUALIB_API int64_t lua_toint64(lua_State* L, int pos); +LUALIB_API uint64_t lua_touint64(lua_State* L, int pos); +#ifdef __cplusplus +#if __cplusplus +} +#endif +#endif /* __cplusplus */ + + +#endif \ No newline at end of file -- Gitee