/* *****                                                            *****
** *****           Program created by Ken Farinsky, 1986.           *****
** *****                                                            *****
**
** All material contained herein may be used in any way desired.
**                    >>>>> i.e.  PUBLIC DOMAIN. <<<<<
** Not limited to any single bulletin board - can be freely transferred.
**
** Original distribution through:
**     Slipped Disk, Inc.
**     Madison Heights,  MI  48071
**     (313) 583-9803
**
** Distributed in the hopes of increasing the level of understanding of the
** Amiga personal computer.  Even the best computer can only succeed with
** the proper software support.
*/
#include <exec/types.h>

/*----------------------------------------------------------------------
** count_records() - figures out how many lines there are.
*/
SHORT	count_records( data)
UBYTE	**data ;
{
SHORT ktr ;

ktr = 0 ;
while ( data[++ktr] != NULL)
	;
return( --ktr) ;
}
