From bc7fba9689805ee0ce5ff3ee8e8713fd811d2e88 Mon Sep 17 00:00:00 2001 From: ehouse Date: Sat, 18 Dec 2004 01:01:47 +0000 Subject: [PATCH] remove bname --- wince/ceginfo.c | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/wince/ceginfo.c b/wince/ceginfo.c index fa6aa8eb0..965fea16b 100755 --- a/wince/ceginfo.c +++ b/wince/ceginfo.c @@ -25,9 +25,6 @@ #define NUM_COLS 4 -/* forward decls */ -static XP_UCHAR* bname( XP_UCHAR* in ); - static XP_U16 ceCountLocalIn( HWND hDlg, XP_U16 nPlayers ) { @@ -514,15 +511,3 @@ GameInfo(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) } return FALSE; } /* GameInfo */ - -static XP_UCHAR* -bname( XP_UCHAR* in ) -{ - XP_U16 len = (XP_U16)XP_STRLEN(in); - XP_UCHAR* out = in + len - 1; - - while ( *out != '\\' && out >= in ) { - --out; - } - return out + 1; -} /* bname */