changeset 288:d5aab11eea3d

Remove 'inline' defs.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 25 Dec 2004 17:13:03 +0000
parents bd84d27dd23b
children cab5ec6127ee
files src/xs_support.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/xs_support.c	Sat Dec 25 11:44:00 2004 +0000
+++ b/src/xs_support.c	Sat Dec 25 17:13:03 2004 +0000
@@ -162,19 +162,19 @@
 }
 
 
-inline void xs_findnext(gchar *pcStr, guint *piPos)
+void xs_findnext(gchar *pcStr, guint *piPos)
 {
  while (pcStr[*piPos] && isspace(pcStr[*piPos])) (*piPos)++;
 }
 
 
-inline void xs_findeol(gchar *pcStr, guint *piPos)
+void xs_findeol(gchar *pcStr, guint *piPos)
 {
  while (pcStr[*piPos] && (pcStr[*piPos] != '\n') && (pcStr[*piPos] != '\r')) (*piPos)++;
 }
 
 
-inline void xs_findnum(gchar *pcStr, guint *piPos)
+void xs_findnum(gchar *pcStr, guint *piPos)
 {
  while (pcStr[*piPos] && isdigit(pcStr[*piPos])) (*piPos)++;
 }