add lua funcs names to Spell words && use tabs instead spaces

This commit is contained in:
2025-04-05 17:49:35 +05:00
parent 273e9edfc7
commit 5dc9f2ca31
11 changed files with 1586 additions and 1558 deletions

View File

@@ -1,19 +1,18 @@
#ifndef _SYSCALLS_ARP_ENTRY_
#define _SYSCALLS_ARP_ENTRY
#ifndef __SYSCALLS_ARP_ENTRY__
#define __SYSCALLS_ARP_ENTRY__
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
#include <stdint.h>
struct ARP_entry
{
uint32_t IP;
char MAC[6];
uint16_t Status;
uint16_t TTL;
uint32_t IP;
char MAC[6];
uint16_t Status;
uint16_t TTL;
};
#define syscalls_ARPEntry_name "ARPEntry"
@@ -33,4 +32,4 @@ int syscalls_newindexARPEntry(lua_State* L);
void syscalls_register_ARPEntry(lua_State* L);
#endif
#endif // __SYSCALLS_ARP_ENTRY__