tore at bibsyst.UUCP (Tore Morkemo) writes: >Could anyone please tell me what rindex() and index() are supposed to do ?? On System V, strchr and strrchr perform the same functions - typically if you: #define index strchr #define rindex strrchr everything will work OK.