In article <375 at bibsyst.UUCP> tore at bibsyst.UUCP (Tore Morkemo) writes: >Could anyone please tell me what rindex() and index() are supposed to do ?? > >I found these in a bsd-source and since I'm on a SYSV I can't find them. #define index(a,b) strchr(a,b) #define rindex(a,b) strrchr(a,b) Good luck. -- Harold