From 6d0cfd4b044a0e8294d27921cef9a10ce2cbaa7a Mon Sep 17 00:00:00 2001 From: Erwan Velu Date: Mon, 7 Feb 2011 23:11:39 +0100 Subject: com32: single instance of skipspace() no need to keep several versions of it. --- com32/lua/src/pci.c | 28 ++++++++++------------------ 1 file changed, 10 insertions(+), 18 deletions(-) (limited to 'com32/lua') diff --git a/com32/lua/src/pci.c b/com32/lua/src/pci.c index b9c1605e..c367ba9a 100644 --- a/com32/lua/src/pci.c +++ b/com32/lua/src/pci.c @@ -1,6 +1,7 @@ #include #include #include +#include #define lpcilib_c /* Define the library */ @@ -9,6 +10,15 @@ #include "lualib.h" #include +/* removing any \n found in a string */ +static void remove_eol(char *string) +{ + int j = strlen(string); + int i = 0; + for (i = 0; i < j; i++) + if (string[i] == '\n') + string[i] = 0; +} static int pci_getinfo(lua_State *L) { @@ -59,24 +69,6 @@ static int pci_getinfo(lua_State *L) return 1; } -/* searching the next char that is not a space */ -static char *skipspace(char *p) -{ - while (*p && *p <= ' ') - p++; - - return p; -} - -/* removing any \n found in a string */ -static void remove_eol(char *string) -{ - int j = strlen(string); - int i = 0; - for(i = 0; i < j; i++) if(string[i] == '\n') string[i] = 0; -} - - /* Try to match any pci device to the appropriate kernel module */ /* it uses the modules.pcimap from the boot device*/ static int pci_getidlist(lua_State *L) -- cgit v1.2.1