1*b11a5709SKyle Evans /*- 2*b11a5709SKyle Evans * Copyright (c) 2018 Conrad Meyer <cem@FreeBSD.org> 3*b11a5709SKyle Evans * All rights reserved. 4*b11a5709SKyle Evans * 5*b11a5709SKyle Evans * Redistribution and use in source and binary forms, with or without 6*b11a5709SKyle Evans * modification, are permitted provided that the following conditions 7*b11a5709SKyle Evans * are met: 8*b11a5709SKyle Evans * 1. Redistributions of source code must retain the above copyright 9*b11a5709SKyle Evans * notice, this list of conditions and the following disclaimer. 10*b11a5709SKyle Evans * 2. Redistributions in binary form must reproduce the above copyright 11*b11a5709SKyle Evans * notice, this list of conditions and the following disclaimer in the 12*b11a5709SKyle Evans * documentation and/or other materials provided with the distribution. 13*b11a5709SKyle Evans * 14*b11a5709SKyle Evans * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15*b11a5709SKyle Evans * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16*b11a5709SKyle Evans * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17*b11a5709SKyle Evans * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18*b11a5709SKyle Evans * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19*b11a5709SKyle Evans * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20*b11a5709SKyle Evans * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21*b11a5709SKyle Evans * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22*b11a5709SKyle Evans * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23*b11a5709SKyle Evans * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24*b11a5709SKyle Evans * SUCH DAMAGE. 25*b11a5709SKyle Evans */ 26*b11a5709SKyle Evans 27*b11a5709SKyle Evans #pragma once 28*b11a5709SKyle Evans 29*b11a5709SKyle Evans #include <lua.h> 30*b11a5709SKyle Evans 31*b11a5709SKyle Evans int luaopen_lfs(lua_State *L); 32