2.9BSD/usr/src/lib/libU77/iargc_.c

Compare this file to the similar file:
Show the results in this format:

/*
char id_iargc[] = "@(#)iargc_.c	1.1";
 *
 * return the number of args on the command line following the command name
 *
 * calling sequence:
 *	nargs = iargc()
 * where:
 *	nargs will be set to the number of args
 */

#include	"../libI77/fiodefs.h"

extern int xargc;

ftnint iargc_()
{
	return ((ftnint)(xargc - 1));
}