*** empty log message ***

This commit is contained in:
hyung-hwan 2006-06-23 11:50:34 +00:00
parent a5b4ebce83
commit c3d06f762b
2 changed files with 9 additions and 12 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: sa.c,v 1.21 2006-05-06 12:52:36 bacon Exp $
* $Id: sa.c,v 1.22 2006-06-23 11:48:19 bacon Exp $
*/
#include <xp/awk/awk_i.h>
@ -70,10 +70,13 @@ xp_size_t xp_strncpy (xp_char_t* buf, const xp_char_t* str, xp_size_t len)
int xp_strcmp (const xp_char_t* s1, const xp_char_t* s2)
{
while (*s1 == *s2 && *s2 != XP_T('\0')) s1++, s2++;
if (*s1 > *s2) return 1;
else if (*s1 < *s2) return -1;
return 0;
while (*s1 == *s2)
{
if (*s1 == XP_CHAR('\0')) return 0;
s1++, s2++;
}
return (*s1 > *s2)? 1: -1;
}
int xp_strxncmp (

View File

@ -1,5 +1,5 @@
/*
* $Id: macros.h,v 1.33 2006-06-23 11:48:18 bacon Exp $
* $Id: macros.h,v 1.34 2006-06-23 11:50:34 bacon Exp $
*/
#ifndef _XP_MACROS_H_
@ -111,10 +111,4 @@
#define XP_Q(val) XP_WQ(val)
#endif
/* compiler-specific macros */
#ifndef _WIN32
#define __declspec(x)
#endif
#endif