ftp.nice.ch/pub/next/unix/communication/am.1.16.NIHS.bs.tar.gz#/am.1.16.NIHS.bs/src/zyxel.c

This is zyxel.c in view mode; [Download] [Up]

#import <libc.h>
#import "precomp.h"

int isZyXEL(struct zyxel *header)
{
	if(strncmp("ZyXEL",header->title,5)!=0 || header->mode!=ZYX_VOC)
		return ZYX_NOSNDHEADER;
	switch(header->voice)
	{
		case ZYX_AD3	:return ZYX_AD3;
		case ZYX_AD2	:return ZYX_AD2;
		case ZYX_CLP	:return ZYX_CLP;
		default			:return ZYX_NOTSUPPORTED;
	}		
}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.