Home » CEEFAX disks » telesoftware7.adl » 06-05-88/SETFT/C

06-05-88/SETFT/C

This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.

Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.

Tape/disk: Home » CEEFAX disks » telesoftware7.adl
Filename: 06-05-88/SETFT/C
Read OK:
File size: 153D bytes
Load address: 0000
Exec address: FFFFFFFF
File contents
/* SETFT.C  written by L.S.Roberts  January 1988 */

#include <stdio.h>
#include <dos.h>

/* Structure definitions for file time and file search functions */
/* Included here for compatibility between compilers */

struct	FTIME	{
	unsigned	ft_tsec	 : 5;	/* Two second interval */
	unsigned	ft_min	 : 6;	/* Minutes */
	unsigned	ft_hour	 : 5;	/* Hours */
	unsigned	ft_day	 : 5;	/* Days */
	unsigned	ft_month : 4;	/* Months */
	unsigned	ft_year	 : 7;	/* Year */
	};

struct FINFO
{
	char		reserved[21];
	char		attrib;
	unsigned	time;
	unsigned	date;
	long		size;
	char		name[13];
};

/* function declarations */

extern char *strrchr();
struct FINFO *findfirstfile();
struct FINFO *findnextfile();
int setfiletime();

#ifdef ZC		/* if Zorland C */
#define intdos newintdos
#endif


main(argc,argv)
int argc;
char *argv[];
{
	struct FTIME tbuf;			/* buffer to hold time to be used */
	struct FINFO fbuf, *p;		/* file info buffer */
	FILE *fp;
	int day, month, year, dummy;
	int hour, minute;			/* variables to hold components of time/date */
	char pathname[80];			/* holds full file pathname */
	char *nameptr;				/* will point to last element of pathname */

	getsystime(&tbuf);			/* Get current time first */
								/* will use this if none given */

	switch(argc)
	{

	case 1:						/* no parameters, print message */

			printf("\nSETFT: Set file time and date");
			printf("\nSyntax: SETFT <ambig filename> (<dd-mm-yy>) (<hh:mm>)");
			exit(1);

	case 4:						/* 3 parameters, date & time given */

			if (sscanf(argv[3],"%2d%c%2d",&hour,&dummy,&minute)
			 < 3)								/* this gets the time */
			{
				printf("\nInvalid time");
				exit(1);
			}
			tbuf.ft_tsec=0;
			tbuf.ft_min=minute;
			tbuf.ft_hour=hour;
								/* now falls through to get date */

	case 3:						/* 2 parameters,  date only given */

			if (sscanf(argv[2],"%2d%c%2d%c%2d",&day,&dummy,&month,&dummy,&year)
			 < 5)								/* this gets the date */	
			{
				printf("\nInvalid date");
				exit(1);
			}
			tbuf.ft_day=day;
			tbuf.ft_month=month;
			tbuf.ft_year=year-80;

	}

	strcpy(pathname,argv[1]);

/* nameptr is set to point to the last element of the filename
   this is so that if a wildcard had been typed, the wildcard can
   be replaced with actual name when a file has been found */

	nameptr = strrchr(pathname,'\\');
	if (nameptr==NULL) nameptr=strrchr(pathname,':');
	if (nameptr==NULL) nameptr=pathname; else nameptr++;

	p=findfirstfile(argv[1],0xFF,&fbuf);
	if (p==NULL)
	{
		printf("\nNo matching file");
		exit(1);
	}

	while (p)
	{	
		if ((p->attrib & 0x10) == 0)	/* ignore directories */
										/* MSDOS doesn't allow directory */
										/* times to be altered */
		{
			strcpy(nameptr,p->name);	/* replace wildcard with actual name */
			fp=fopen(pathname,"rb");	/* setfiletime works on an open file */
			if (!fp)
			{
				printf("\nDisc error occurred");
				exit(1);
			}
			setfiletime(fileno(fp),&tbuf);	/* set the file time */
			fclose(fp);						/* close the file */
		}
		p=findnextfile(&fbuf);			/* and find the next file */
	}
	exit(0);							/* all done */
}


struct FINFO *findfirstfile(name,attribute,fbuf)
struct FINFO *fbuf;
char *name;
int attribute;
{	

	union REGS regs;

	bdos(0x1A,(int)fbuf,0);			/* set disc transfer address */
	regs.x.ax = 0x4E00;				/* function 4E = search for first match */
	regs.x.dx = (int) name;			/* name of file */
	regs.x.cx = attribute;			/* type of files to find */
	intdos(&regs,&regs);			/* calls it */
	if (regs.x.cflag)   
		return (struct FINFO *) NULL;	/* file not found, return null pointer */
	else
		return fbuf;				/* file found, return pointer to info buffer */
}

struct FINFO *findnextfile(fbuf)
struct FINFO *fbuf;
{	
	union REGS regs;

	bdos(0x1A,(int)fbuf,0);			/* set disc transfer address */
	regs.x.ax = 0x4F00;				/* function 4F = search for next match */
	intdos(&regs,&regs);			/* calls it */
	if (regs.x.cflag)   
		return (struct FINFO *) NULL;	/* not found */
	else
		return fbuf;				/* file found */
}


int setfiletime(handle,ftbuf)
int handle;
struct FTIME *ftbuf;
{
	union REGS regs;

	regs.x.ax = 0x5701;				/* function 57 = get or set file date & time */
									/* AL=1 for setting */	
	regs.x.bx = handle;				/* handle of open file */
	regs.x.cx = * ((int *)ftbuf);
	regs.x.dx = * ((int *)ftbuf + 1);	/* time info in CX and DX */
	intdos(&regs,&regs);
	if (regs.x.cflag)
		return -1;					/* return -1 if error occurred */
	else
		return 0;
}

int getsystime(tbuf)
struct FTIME *tbuf;
{
	union REGS regs;

	regs.x.ax = 0x2C00;				/* function 2C = get system time */
	intdos(&regs,&regs);

	tbuf->ft_tsec=regs.h.dh/2;
	tbuf->ft_min=regs.h.cl;
	tbuf->ft_hour=regs.h.ch;

	regs.x.ax = 0x2A00;				/* function 2A = get system date */
	intdos(&regs,&regs);

	tbuf->ft_day=regs.h.dl;
	tbuf->ft_month=regs.h.dh;
	tbuf->ft_year=regs.x.cx-1980;
}
	

#ifdef ZC

/* The following routine is needed because intdos in Zorland C
   doesn't return the carry flag correctly
   Using '#define intdos newintdos' above causes this routine
   to be substituted and fixes the problem.
*/

#undef intdos

int newintdos(regsin,regsout)
union REGS *regsin,*regsout;
{
	int flag=intdos(regsin,regsout);
	regsout->x.cflag = flag & 1;
	return flag;
}
#endif
00000000  2f 2a 20 53 45 54 46 54  2e 43 20 20 77 72 69 74  |/* SETFT.C  writ|
00000010  74 65 6e 20 62 79 20 4c  2e 53 2e 52 6f 62 65 72  |ten by L.S.Rober|
00000020  74 73 20 20 4a 61 6e 75  61 72 79 20 31 39 38 38  |ts  January 1988|
00000030  20 2a 2f 0d 0a 0d 0a 23  69 6e 63 6c 75 64 65 20  | */....#include |
00000040  3c 73 74 64 69 6f 2e 68  3e 0d 0a 23 69 6e 63 6c  |<stdio.h>..#incl|
00000050  75 64 65 20 3c 64 6f 73  2e 68 3e 0d 0a 0d 0a 2f  |ude <dos.h>..../|
00000060  2a 20 53 74 72 75 63 74  75 72 65 20 64 65 66 69  |* Structure defi|
00000070  6e 69 74 69 6f 6e 73 20  66 6f 72 20 66 69 6c 65  |nitions for file|
00000080  20 74 69 6d 65 20 61 6e  64 20 66 69 6c 65 20 73  | time and file s|
00000090  65 61 72 63 68 20 66 75  6e 63 74 69 6f 6e 73 20  |earch functions |
000000a0  2a 2f 0d 0a 2f 2a 20 49  6e 63 6c 75 64 65 64 20  |*/../* Included |
000000b0  68 65 72 65 20 66 6f 72  20 63 6f 6d 70 61 74 69  |here for compati|
000000c0  62 69 6c 69 74 79 20 62  65 74 77 65 65 6e 20 63  |bility between c|
000000d0  6f 6d 70 69 6c 65 72 73  20 2a 2f 0d 0a 0d 0a 73  |ompilers */....s|
000000e0  74 72 75 63 74 09 46 54  49 4d 45 09 7b 0d 0a 09  |truct.FTIME.{...|
000000f0  75 6e 73 69 67 6e 65 64  09 66 74 5f 74 73 65 63  |unsigned.ft_tsec|
00000100  09 20 3a 20 35 3b 09 2f  2a 20 54 77 6f 20 73 65  |. : 5;./* Two se|
00000110  63 6f 6e 64 20 69 6e 74  65 72 76 61 6c 20 2a 2f  |cond interval */|
00000120  0d 0a 09 75 6e 73 69 67  6e 65 64 09 66 74 5f 6d  |...unsigned.ft_m|
00000130  69 6e 09 20 3a 20 36 3b  09 2f 2a 20 4d 69 6e 75  |in. : 6;./* Minu|
00000140  74 65 73 20 2a 2f 0d 0a  09 75 6e 73 69 67 6e 65  |tes */...unsigne|
00000150  64 09 66 74 5f 68 6f 75  72 09 20 3a 20 35 3b 09  |d.ft_hour. : 5;.|
00000160  2f 2a 20 48 6f 75 72 73  20 2a 2f 0d 0a 09 75 6e  |/* Hours */...un|
00000170  73 69 67 6e 65 64 09 66  74 5f 64 61 79 09 20 3a  |signed.ft_day. :|
00000180  20 35 3b 09 2f 2a 20 44  61 79 73 20 2a 2f 0d 0a  | 5;./* Days */..|
00000190  09 75 6e 73 69 67 6e 65  64 09 66 74 5f 6d 6f 6e  |.unsigned.ft_mon|
000001a0  74 68 20 3a 20 34 3b 09  2f 2a 20 4d 6f 6e 74 68  |th : 4;./* Month|
000001b0  73 20 2a 2f 0d 0a 09 75  6e 73 69 67 6e 65 64 09  |s */...unsigned.|
000001c0  66 74 5f 79 65 61 72 09  20 3a 20 37 3b 09 2f 2a  |ft_year. : 7;./*|
000001d0  20 59 65 61 72 20 2a 2f  0d 0a 09 7d 3b 0d 0a 0d  | Year */...};...|
000001e0  0a 73 74 72 75 63 74 20  46 49 4e 46 4f 0d 0a 7b  |.struct FINFO..{|
000001f0  0d 0a 09 63 68 61 72 09  09 72 65 73 65 72 76 65  |...char..reserve|
00000200  64 5b 32 31 5d 3b 0d 0a  09 63 68 61 72 09 09 61  |d[21];...char..a|
00000210  74 74 72 69 62 3b 0d 0a  09 75 6e 73 69 67 6e 65  |ttrib;...unsigne|
00000220  64 09 74 69 6d 65 3b 0d  0a 09 75 6e 73 69 67 6e  |d.time;...unsign|
00000230  65 64 09 64 61 74 65 3b  0d 0a 09 6c 6f 6e 67 09  |ed.date;...long.|
00000240  09 73 69 7a 65 3b 0d 0a  09 63 68 61 72 09 09 6e  |.size;...char..n|
00000250  61 6d 65 5b 31 33 5d 3b  0d 0a 7d 3b 0d 0a 0d 0a  |ame[13];..};....|
00000260  2f 2a 20 66 75 6e 63 74  69 6f 6e 20 64 65 63 6c  |/* function decl|
00000270  61 72 61 74 69 6f 6e 73  20 2a 2f 0d 0a 0d 0a 65  |arations */....e|
00000280  78 74 65 72 6e 20 63 68  61 72 20 2a 73 74 72 72  |xtern char *strr|
00000290  63 68 72 28 29 3b 0d 0a  73 74 72 75 63 74 20 46  |chr();..struct F|
000002a0  49 4e 46 4f 20 2a 66 69  6e 64 66 69 72 73 74 66  |INFO *findfirstf|
000002b0  69 6c 65 28 29 3b 0d 0a  73 74 72 75 63 74 20 46  |ile();..struct F|
000002c0  49 4e 46 4f 20 2a 66 69  6e 64 6e 65 78 74 66 69  |INFO *findnextfi|
000002d0  6c 65 28 29 3b 0d 0a 69  6e 74 20 73 65 74 66 69  |le();..int setfi|
000002e0  6c 65 74 69 6d 65 28 29  3b 0d 0a 0d 0a 23 69 66  |letime();....#if|
000002f0  64 65 66 20 5a 43 09 09  2f 2a 20 69 66 20 5a 6f  |def ZC../* if Zo|
00000300  72 6c 61 6e 64 20 43 20  2a 2f 0d 0a 23 64 65 66  |rland C */..#def|
00000310  69 6e 65 20 69 6e 74 64  6f 73 20 6e 65 77 69 6e  |ine intdos newin|
00000320  74 64 6f 73 0d 0a 23 65  6e 64 69 66 0d 0a 0d 0a  |tdos..#endif....|
00000330  0d 0a 6d 61 69 6e 28 61  72 67 63 2c 61 72 67 76  |..main(argc,argv|
00000340  29 0d 0a 69 6e 74 20 61  72 67 63 3b 0d 0a 63 68  |)..int argc;..ch|
00000350  61 72 20 2a 61 72 67 76  5b 5d 3b 0d 0a 7b 0d 0a  |ar *argv[];..{..|
00000360  09 73 74 72 75 63 74 20  46 54 49 4d 45 20 74 62  |.struct FTIME tb|
00000370  75 66 3b 09 09 09 2f 2a  20 62 75 66 66 65 72 20  |uf;.../* buffer |
00000380  74 6f 20 68 6f 6c 64 20  74 69 6d 65 20 74 6f 20  |to hold time to |
00000390  62 65 20 75 73 65 64 20  2a 2f 0d 0a 09 73 74 72  |be used */...str|
000003a0  75 63 74 20 46 49 4e 46  4f 20 66 62 75 66 2c 20  |uct FINFO fbuf, |
000003b0  2a 70 3b 09 09 2f 2a 20  66 69 6c 65 20 69 6e 66  |*p;../* file inf|
000003c0  6f 20 62 75 66 66 65 72  20 2a 2f 0d 0a 09 46 49  |o buffer */...FI|
000003d0  4c 45 20 2a 66 70 3b 0d  0a 09 69 6e 74 20 64 61  |LE *fp;...int da|
000003e0  79 2c 20 6d 6f 6e 74 68  2c 20 79 65 61 72 2c 20  |y, month, year, |
000003f0  64 75 6d 6d 79 3b 0d 0a  09 69 6e 74 20 68 6f 75  |dummy;...int hou|
00000400  72 2c 20 6d 69 6e 75 74  65 3b 09 09 09 2f 2a 20  |r, minute;.../* |
00000410  76 61 72 69 61 62 6c 65  73 20 74 6f 20 68 6f 6c  |variables to hol|
00000420  64 20 63 6f 6d 70 6f 6e  65 6e 74 73 20 6f 66 20  |d components of |
00000430  74 69 6d 65 2f 64 61 74  65 20 2a 2f 0d 0a 09 63  |time/date */...c|
00000440  68 61 72 20 70 61 74 68  6e 61 6d 65 5b 38 30 5d  |har pathname[80]|
00000450  3b 09 09 09 2f 2a 20 68  6f 6c 64 73 20 66 75 6c  |;.../* holds ful|
00000460  6c 20 66 69 6c 65 20 70  61 74 68 6e 61 6d 65 20  |l file pathname |
00000470  2a 2f 0d 0a 09 63 68 61  72 20 2a 6e 61 6d 65 70  |*/...char *namep|
00000480  74 72 3b 09 09 09 09 2f  2a 20 77 69 6c 6c 20 70  |tr;..../* will p|
00000490  6f 69 6e 74 20 74 6f 20  6c 61 73 74 20 65 6c 65  |oint to last ele|
000004a0  6d 65 6e 74 20 6f 66 20  70 61 74 68 6e 61 6d 65  |ment of pathname|
000004b0  20 2a 2f 0d 0a 0d 0a 09  67 65 74 73 79 73 74 69  | */.....getsysti|
000004c0  6d 65 28 26 74 62 75 66  29 3b 09 09 09 2f 2a 20  |me(&tbuf);.../* |
000004d0  47 65 74 20 63 75 72 72  65 6e 74 20 74 69 6d 65  |Get current time|
000004e0  20 66 69 72 73 74 20 2a  2f 0d 0a 09 09 09 09 09  | first */.......|
000004f0  09 09 09 2f 2a 20 77 69  6c 6c 20 75 73 65 20 74  |.../* will use t|
00000500  68 69 73 20 69 66 20 6e  6f 6e 65 20 67 69 76 65  |his if none give|
00000510  6e 20 2a 2f 0d 0a 0d 0a  09 73 77 69 74 63 68 28  |n */.....switch(|
00000520  61 72 67 63 29 0d 0a 09  7b 0d 0a 0d 0a 09 63 61  |argc)...{.....ca|
00000530  73 65 20 31 3a 09 09 09  09 09 09 2f 2a 20 6e 6f  |se 1:....../* no|
00000540  20 70 61 72 61 6d 65 74  65 72 73 2c 20 70 72 69  | parameters, pri|
00000550  6e 74 20 6d 65 73 73 61  67 65 20 2a 2f 0d 0a 0d  |nt message */...|
00000560  0a 09 09 09 70 72 69 6e  74 66 28 22 5c 6e 53 45  |....printf("\nSE|
00000570  54 46 54 3a 20 53 65 74  20 66 69 6c 65 20 74 69  |TFT: Set file ti|
00000580  6d 65 20 61 6e 64 20 64  61 74 65 22 29 3b 0d 0a  |me and date");..|
00000590  09 09 09 70 72 69 6e 74  66 28 22 5c 6e 53 79 6e  |...printf("\nSyn|
000005a0  74 61 78 3a 20 53 45 54  46 54 20 3c 61 6d 62 69  |tax: SETFT <ambi|
000005b0  67 20 66 69 6c 65 6e 61  6d 65 3e 20 28 3c 64 64  |g filename> (<dd|
000005c0  2d 6d 6d 2d 79 79 3e 29  20 28 3c 68 68 3a 6d 6d  |-mm-yy>) (<hh:mm|
000005d0  3e 29 22 29 3b 0d 0a 09  09 09 65 78 69 74 28 31  |>)");.....exit(1|
000005e0  29 3b 0d 0a 0d 0a 09 63  61 73 65 20 34 3a 09 09  |);.....case 4:..|
000005f0  09 09 09 09 2f 2a 20 33  20 70 61 72 61 6d 65 74  |..../* 3 paramet|
00000600  65 72 73 2c 20 64 61 74  65 20 26 20 74 69 6d 65  |ers, date & time|
00000610  20 67 69 76 65 6e 20 2a  2f 0d 0a 0d 0a 09 09 09  | given */.......|
00000620  69 66 20 28 73 73 63 61  6e 66 28 61 72 67 76 5b  |if (sscanf(argv[|
00000630  33 5d 2c 22 25 32 64 25  63 25 32 64 22 2c 26 68  |3],"%2d%c%2d",&h|
00000640  6f 75 72 2c 26 64 75 6d  6d 79 2c 26 6d 69 6e 75  |our,&dummy,&minu|
00000650  74 65 29 0d 0a 09 09 09  20 3c 20 33 29 09 09 09  |te)..... < 3)...|
00000660  09 09 09 09 09 2f 2a 20  74 68 69 73 20 67 65 74  |...../* this get|
00000670  73 20 74 68 65 20 74 69  6d 65 20 2a 2f 0d 0a 09  |s the time */...|
00000680  09 09 7b 0d 0a 09 09 09  09 70 72 69 6e 74 66 28  |..{......printf(|
00000690  22 5c 6e 49 6e 76 61 6c  69 64 20 74 69 6d 65 22  |"\nInvalid time"|
000006a0  29 3b 0d 0a 09 09 09 09  65 78 69 74 28 31 29 3b  |);......exit(1);|
000006b0  0d 0a 09 09 09 7d 0d 0a  09 09 09 74 62 75 66 2e  |.....}.....tbuf.|
000006c0  66 74 5f 74 73 65 63 3d  30 3b 0d 0a 09 09 09 74  |ft_tsec=0;.....t|
000006d0  62 75 66 2e 66 74 5f 6d  69 6e 3d 6d 69 6e 75 74  |buf.ft_min=minut|
000006e0  65 3b 0d 0a 09 09 09 74  62 75 66 2e 66 74 5f 68  |e;.....tbuf.ft_h|
000006f0  6f 75 72 3d 68 6f 75 72  3b 0d 0a 09 09 09 09 09  |our=hour;.......|
00000700  09 09 09 2f 2a 20 6e 6f  77 20 66 61 6c 6c 73 20  |.../* now falls |
00000710  74 68 72 6f 75 67 68 20  74 6f 20 67 65 74 20 64  |through to get d|
00000720  61 74 65 20 2a 2f 0d 0a  0d 0a 09 63 61 73 65 20  |ate */.....case |
00000730  33 3a 09 09 09 09 09 09  2f 2a 20 32 20 70 61 72  |3:....../* 2 par|
00000740  61 6d 65 74 65 72 73 2c  20 20 64 61 74 65 20 6f  |ameters,  date o|
00000750  6e 6c 79 20 67 69 76 65  6e 20 2a 2f 0d 0a 0d 0a  |nly given */....|
00000760  09 09 09 69 66 20 28 73  73 63 61 6e 66 28 61 72  |...if (sscanf(ar|
00000770  67 76 5b 32 5d 2c 22 25  32 64 25 63 25 32 64 25  |gv[2],"%2d%c%2d%|
00000780  63 25 32 64 22 2c 26 64  61 79 2c 26 64 75 6d 6d  |c%2d",&day,&dumm|
00000790  79 2c 26 6d 6f 6e 74 68  2c 26 64 75 6d 6d 79 2c  |y,&month,&dummy,|
000007a0  26 79 65 61 72 29 0d 0a  09 09 09 20 3c 20 35 29  |&year)..... < 5)|
000007b0  09 09 09 09 09 09 09 09  2f 2a 20 74 68 69 73 20  |......../* this |
000007c0  67 65 74 73 20 74 68 65  20 64 61 74 65 20 2a 2f  |gets the date */|
000007d0  09 0d 0a 09 09 09 7b 0d  0a 09 09 09 09 70 72 69  |......{......pri|
000007e0  6e 74 66 28 22 5c 6e 49  6e 76 61 6c 69 64 20 64  |ntf("\nInvalid d|
000007f0  61 74 65 22 29 3b 0d 0a  09 09 09 09 65 78 69 74  |ate");......exit|
00000800  28 31 29 3b 0d 0a 09 09  09 7d 0d 0a 09 09 09 74  |(1);.....}.....t|
00000810  62 75 66 2e 66 74 5f 64  61 79 3d 64 61 79 3b 0d  |buf.ft_day=day;.|
00000820  0a 09 09 09 74 62 75 66  2e 66 74 5f 6d 6f 6e 74  |....tbuf.ft_mont|
00000830  68 3d 6d 6f 6e 74 68 3b  0d 0a 09 09 09 74 62 75  |h=month;.....tbu|
00000840  66 2e 66 74 5f 79 65 61  72 3d 79 65 61 72 2d 38  |f.ft_year=year-8|
00000850  30 3b 0d 0a 0d 0a 09 7d  0d 0a 0d 0a 09 73 74 72  |0;.....}.....str|
00000860  63 70 79 28 70 61 74 68  6e 61 6d 65 2c 61 72 67  |cpy(pathname,arg|
00000870  76 5b 31 5d 29 3b 0d 0a  0d 0a 2f 2a 20 6e 61 6d  |v[1]);..../* nam|
00000880  65 70 74 72 20 69 73 20  73 65 74 20 74 6f 20 70  |eptr is set to p|
00000890  6f 69 6e 74 20 74 6f 20  74 68 65 20 6c 61 73 74  |oint to the last|
000008a0  20 65 6c 65 6d 65 6e 74  20 6f 66 20 74 68 65 20  | element of the |
000008b0  66 69 6c 65 6e 61 6d 65  0d 0a 20 20 20 74 68 69  |filename..   thi|
000008c0  73 20 69 73 20 73 6f 20  74 68 61 74 20 69 66 20  |s is so that if |
000008d0  61 20 77 69 6c 64 63 61  72 64 20 68 61 64 20 62  |a wildcard had b|
000008e0  65 65 6e 20 74 79 70 65  64 2c 20 74 68 65 20 77  |een typed, the w|
000008f0  69 6c 64 63 61 72 64 20  63 61 6e 0d 0a 20 20 20  |ildcard can..   |
00000900  62 65 20 72 65 70 6c 61  63 65 64 20 77 69 74 68  |be replaced with|
00000910  20 61 63 74 75 61 6c 20  6e 61 6d 65 20 77 68 65  | actual name whe|
00000920  6e 20 61 20 66 69 6c 65  20 68 61 73 20 62 65 65  |n a file has bee|
00000930  6e 20 66 6f 75 6e 64 20  2a 2f 0d 0a 0d 0a 09 6e  |n found */.....n|
00000940  61 6d 65 70 74 72 20 3d  20 73 74 72 72 63 68 72  |ameptr = strrchr|
00000950  28 70 61 74 68 6e 61 6d  65 2c 27 5c 5c 27 29 3b  |(pathname,'\\');|
00000960  0d 0a 09 69 66 20 28 6e  61 6d 65 70 74 72 3d 3d  |...if (nameptr==|
00000970  4e 55 4c 4c 29 20 6e 61  6d 65 70 74 72 3d 73 74  |NULL) nameptr=st|
00000980  72 72 63 68 72 28 70 61  74 68 6e 61 6d 65 2c 27  |rrchr(pathname,'|
00000990  3a 27 29 3b 0d 0a 09 69  66 20 28 6e 61 6d 65 70  |:');...if (namep|
000009a0  74 72 3d 3d 4e 55 4c 4c  29 20 6e 61 6d 65 70 74  |tr==NULL) namept|
000009b0  72 3d 70 61 74 68 6e 61  6d 65 3b 20 65 6c 73 65  |r=pathname; else|
000009c0  20 6e 61 6d 65 70 74 72  2b 2b 3b 0d 0a 0d 0a 09  | nameptr++;.....|
000009d0  70 3d 66 69 6e 64 66 69  72 73 74 66 69 6c 65 28  |p=findfirstfile(|
000009e0  61 72 67 76 5b 31 5d 2c  30 78 46 46 2c 26 66 62  |argv[1],0xFF,&fb|
000009f0  75 66 29 3b 0d 0a 09 69  66 20 28 70 3d 3d 4e 55  |uf);...if (p==NU|
00000a00  4c 4c 29 0d 0a 09 7b 0d  0a 09 09 70 72 69 6e 74  |LL)...{....print|
00000a10  66 28 22 5c 6e 4e 6f 20  6d 61 74 63 68 69 6e 67  |f("\nNo matching|
00000a20  20 66 69 6c 65 22 29 3b  0d 0a 09 09 65 78 69 74  | file");....exit|
00000a30  28 31 29 3b 0d 0a 09 7d  0d 0a 0d 0a 09 77 68 69  |(1);...}.....whi|
00000a40  6c 65 20 28 70 29 0d 0a  09 7b 09 0d 0a 09 09 69  |le (p)...{.....i|
00000a50  66 20 28 28 70 2d 3e 61  74 74 72 69 62 20 26 20  |f ((p->attrib & |
00000a60  30 78 31 30 29 20 3d 3d  20 30 29 09 2f 2a 20 69  |0x10) == 0)./* i|
00000a70  67 6e 6f 72 65 20 64 69  72 65 63 74 6f 72 69 65  |gnore directorie|
00000a80  73 20 2a 2f 0d 0a 09 09  09 09 09 09 09 09 09 09  |s */............|
00000a90  2f 2a 20 4d 53 44 4f 53  20 64 6f 65 73 6e 27 74  |/* MSDOS doesn't|
00000aa0  20 61 6c 6c 6f 77 20 64  69 72 65 63 74 6f 72 79  | allow directory|
00000ab0  20 2a 2f 0d 0a 09 09 09  09 09 09 09 09 09 09 2f  | */............/|
00000ac0  2a 20 74 69 6d 65 73 20  74 6f 20 62 65 20 61 6c  |* times to be al|
00000ad0  74 65 72 65 64 20 2a 2f  0d 0a 09 09 7b 0d 0a 09  |tered */....{...|
00000ae0  09 09 73 74 72 63 70 79  28 6e 61 6d 65 70 74 72  |..strcpy(nameptr|
00000af0  2c 70 2d 3e 6e 61 6d 65  29 3b 09 2f 2a 20 72 65  |,p->name);./* re|
00000b00  70 6c 61 63 65 20 77 69  6c 64 63 61 72 64 20 77  |place wildcard w|
00000b10  69 74 68 20 61 63 74 75  61 6c 20 6e 61 6d 65 20  |ith actual name |
00000b20  2a 2f 0d 0a 09 09 09 66  70 3d 66 6f 70 65 6e 28  |*/.....fp=fopen(|
00000b30  70 61 74 68 6e 61 6d 65  2c 22 72 62 22 29 3b 09  |pathname,"rb");.|
00000b40  2f 2a 20 73 65 74 66 69  6c 65 74 69 6d 65 20 77  |/* setfiletime w|
00000b50  6f 72 6b 73 20 6f 6e 20  61 6e 20 6f 70 65 6e 20  |orks on an open |
00000b60  66 69 6c 65 20 2a 2f 0d  0a 09 09 09 69 66 20 28  |file */.....if (|
00000b70  21 66 70 29 0d 0a 09 09  09 7b 0d 0a 09 09 09 09  |!fp).....{......|
00000b80  70 72 69 6e 74 66 28 22  5c 6e 44 69 73 63 20 65  |printf("\nDisc e|
00000b90  72 72 6f 72 20 6f 63 63  75 72 72 65 64 22 29 3b  |rror occurred");|
00000ba0  0d 0a 09 09 09 09 65 78  69 74 28 31 29 3b 0d 0a  |......exit(1);..|
00000bb0  09 09 09 7d 0d 0a 09 09  09 73 65 74 66 69 6c 65  |...}.....setfile|
00000bc0  74 69 6d 65 28 66 69 6c  65 6e 6f 28 66 70 29 2c  |time(fileno(fp),|
00000bd0  26 74 62 75 66 29 3b 09  2f 2a 20 73 65 74 20 74  |&tbuf);./* set t|
00000be0  68 65 20 66 69 6c 65 20  74 69 6d 65 20 2a 2f 0d  |he file time */.|
00000bf0  0a 09 09 09 66 63 6c 6f  73 65 28 66 70 29 3b 09  |....fclose(fp);.|
00000c00  09 09 09 09 09 2f 2a 20  63 6c 6f 73 65 20 74 68  |...../* close th|
00000c10  65 20 66 69 6c 65 20 2a  2f 0d 0a 09 09 7d 0d 0a  |e file */....}..|
00000c20  09 09 70 3d 66 69 6e 64  6e 65 78 74 66 69 6c 65  |..p=findnextfile|
00000c30  28 26 66 62 75 66 29 3b  09 09 09 2f 2a 20 61 6e  |(&fbuf);.../* an|
00000c40  64 20 66 69 6e 64 20 74  68 65 20 6e 65 78 74 20  |d find the next |
00000c50  66 69 6c 65 20 2a 2f 0d  0a 09 7d 0d 0a 09 65 78  |file */...}...ex|
00000c60  69 74 28 30 29 3b 09 09  09 09 09 09 09 2f 2a 20  |it(0);......./* |
00000c70  61 6c 6c 20 64 6f 6e 65  20 2a 2f 0d 0a 7d 0d 0a  |all done */..}..|
00000c80  0d 0a 0d 0a 73 74 72 75  63 74 20 46 49 4e 46 4f  |....struct FINFO|
00000c90  20 2a 66 69 6e 64 66 69  72 73 74 66 69 6c 65 28  | *findfirstfile(|
00000ca0  6e 61 6d 65 2c 61 74 74  72 69 62 75 74 65 2c 66  |name,attribute,f|
00000cb0  62 75 66 29 0d 0a 73 74  72 75 63 74 20 46 49 4e  |buf)..struct FIN|
00000cc0  46 4f 20 2a 66 62 75 66  3b 0d 0a 63 68 61 72 20  |FO *fbuf;..char |
00000cd0  2a 6e 61 6d 65 3b 0d 0a  69 6e 74 20 61 74 74 72  |*name;..int attr|
00000ce0  69 62 75 74 65 3b 0d 0a  7b 09 0d 0a 0d 0a 09 75  |ibute;..{......u|
00000cf0  6e 69 6f 6e 20 52 45 47  53 20 72 65 67 73 3b 0d  |nion REGS regs;.|
00000d00  0a 0d 0a 09 62 64 6f 73  28 30 78 31 41 2c 28 69  |....bdos(0x1A,(i|
00000d10  6e 74 29 66 62 75 66 2c  30 29 3b 09 09 09 2f 2a  |nt)fbuf,0);.../*|
00000d20  20 73 65 74 20 64 69 73  63 20 74 72 61 6e 73 66  | set disc transf|
00000d30  65 72 20 61 64 64 72 65  73 73 20 2a 2f 0d 0a 09  |er address */...|
00000d40  72 65 67 73 2e 78 2e 61  78 20 3d 20 30 78 34 45  |regs.x.ax = 0x4E|
00000d50  30 30 3b 09 09 09 09 2f  2a 20 66 75 6e 63 74 69  |00;..../* functi|
00000d60  6f 6e 20 34 45 20 3d 20  73 65 61 72 63 68 20 66  |on 4E = search f|
00000d70  6f 72 20 66 69 72 73 74  20 6d 61 74 63 68 20 2a  |or first match *|
00000d80  2f 0d 0a 09 72 65 67 73  2e 78 2e 64 78 20 3d 20  |/...regs.x.dx = |
00000d90  28 69 6e 74 29 20 6e 61  6d 65 3b 09 09 09 2f 2a  |(int) name;.../*|
00000da0  20 6e 61 6d 65 20 6f 66  20 66 69 6c 65 20 2a 2f  | name of file */|
00000db0  0d 0a 09 72 65 67 73 2e  78 2e 63 78 20 3d 20 61  |...regs.x.cx = a|
00000dc0  74 74 72 69 62 75 74 65  3b 09 09 09 2f 2a 20 74  |ttribute;.../* t|
00000dd0  79 70 65 20 6f 66 20 66  69 6c 65 73 20 74 6f 20  |ype of files to |
00000de0  66 69 6e 64 20 2a 2f 0d  0a 09 69 6e 74 64 6f 73  |find */...intdos|
00000df0  28 26 72 65 67 73 2c 26  72 65 67 73 29 3b 09 09  |(&regs,&regs);..|
00000e00  09 2f 2a 20 63 61 6c 6c  73 20 69 74 20 2a 2f 0d  |./* calls it */.|
00000e10  0a 09 69 66 20 28 72 65  67 73 2e 78 2e 63 66 6c  |..if (regs.x.cfl|
00000e20  61 67 29 20 20 20 0d 0a  09 09 72 65 74 75 72 6e  |ag)   ....return|
00000e30  20 28 73 74 72 75 63 74  20 46 49 4e 46 4f 20 2a  | (struct FINFO *|
00000e40  29 20 4e 55 4c 4c 3b 09  2f 2a 20 66 69 6c 65 20  |) NULL;./* file |
00000e50  6e 6f 74 20 66 6f 75 6e  64 2c 20 72 65 74 75 72  |not found, retur|
00000e60  6e 20 6e 75 6c 6c 20 70  6f 69 6e 74 65 72 20 2a  |n null pointer *|
00000e70  2f 0d 0a 09 65 6c 73 65  0d 0a 09 09 72 65 74 75  |/...else....retu|
00000e80  72 6e 20 66 62 75 66 3b  09 09 09 09 2f 2a 20 66  |rn fbuf;..../* f|
00000e90  69 6c 65 20 66 6f 75 6e  64 2c 20 72 65 74 75 72  |ile found, retur|
00000ea0  6e 20 70 6f 69 6e 74 65  72 20 74 6f 20 69 6e 66  |n pointer to inf|
00000eb0  6f 20 62 75 66 66 65 72  20 2a 2f 0d 0a 7d 0d 0a  |o buffer */..}..|
00000ec0  0d 0a 73 74 72 75 63 74  20 46 49 4e 46 4f 20 2a  |..struct FINFO *|
00000ed0  66 69 6e 64 6e 65 78 74  66 69 6c 65 28 66 62 75  |findnextfile(fbu|
00000ee0  66 29 0d 0a 73 74 72 75  63 74 20 46 49 4e 46 4f  |f)..struct FINFO|
00000ef0  20 2a 66 62 75 66 3b 0d  0a 7b 09 0d 0a 09 75 6e  | *fbuf;..{....un|
00000f00  69 6f 6e 20 52 45 47 53  20 72 65 67 73 3b 0d 0a  |ion REGS regs;..|
00000f10  0d 0a 09 62 64 6f 73 28  30 78 31 41 2c 28 69 6e  |...bdos(0x1A,(in|
00000f20  74 29 66 62 75 66 2c 30  29 3b 09 09 09 2f 2a 20  |t)fbuf,0);.../* |
00000f30  73 65 74 20 64 69 73 63  20 74 72 61 6e 73 66 65  |set disc transfe|
00000f40  72 20 61 64 64 72 65 73  73 20 2a 2f 0d 0a 09 72  |r address */...r|
00000f50  65 67 73 2e 78 2e 61 78  20 3d 20 30 78 34 46 30  |egs.x.ax = 0x4F0|
00000f60  30 3b 09 09 09 09 2f 2a  20 66 75 6e 63 74 69 6f  |0;..../* functio|
00000f70  6e 20 34 46 20 3d 20 73  65 61 72 63 68 20 66 6f  |n 4F = search fo|
00000f80  72 20 6e 65 78 74 20 6d  61 74 63 68 20 2a 2f 0d  |r next match */.|
00000f90  0a 09 69 6e 74 64 6f 73  28 26 72 65 67 73 2c 26  |..intdos(&regs,&|
00000fa0  72 65 67 73 29 3b 09 09  09 2f 2a 20 63 61 6c 6c  |regs);.../* call|
00000fb0  73 20 69 74 20 2a 2f 0d  0a 09 69 66 20 28 72 65  |s it */...if (re|
00000fc0  67 73 2e 78 2e 63 66 6c  61 67 29 20 20 20 0d 0a  |gs.x.cflag)   ..|
00000fd0  09 09 72 65 74 75 72 6e  20 28 73 74 72 75 63 74  |..return (struct|
00000fe0  20 46 49 4e 46 4f 20 2a  29 20 4e 55 4c 4c 3b 09  | FINFO *) NULL;.|
00000ff0  2f 2a 20 6e 6f 74 20 66  6f 75 6e 64 20 2a 2f 0d  |/* not found */.|
00001000  0a 09 65 6c 73 65 0d 0a  09 09 72 65 74 75 72 6e  |..else....return|
00001010  20 66 62 75 66 3b 09 09  09 09 2f 2a 20 66 69 6c  | fbuf;..../* fil|
00001020  65 20 66 6f 75 6e 64 20  2a 2f 0d 0a 7d 0d 0a 0d  |e found */..}...|
00001030  0a 0d 0a 69 6e 74 20 73  65 74 66 69 6c 65 74 69  |...int setfileti|
00001040  6d 65 28 68 61 6e 64 6c  65 2c 66 74 62 75 66 29  |me(handle,ftbuf)|
00001050  0d 0a 69 6e 74 20 68 61  6e 64 6c 65 3b 0d 0a 73  |..int handle;..s|
00001060  74 72 75 63 74 20 46 54  49 4d 45 20 2a 66 74 62  |truct FTIME *ftb|
00001070  75 66 3b 0d 0a 7b 0d 0a  09 75 6e 69 6f 6e 20 52  |uf;..{...union R|
00001080  45 47 53 20 72 65 67 73  3b 0d 0a 0d 0a 09 72 65  |EGS regs;.....re|
00001090  67 73 2e 78 2e 61 78 20  3d 20 30 78 35 37 30 31  |gs.x.ax = 0x5701|
000010a0  3b 09 09 09 09 2f 2a 20  66 75 6e 63 74 69 6f 6e  |;..../* function|
000010b0  20 35 37 20 3d 20 67 65  74 20 6f 72 20 73 65 74  | 57 = get or set|
000010c0  20 66 69 6c 65 20 64 61  74 65 20 26 20 74 69 6d  | file date & tim|
000010d0  65 20 2a 2f 0d 0a 09 09  09 09 09 09 09 09 09 2f  |e */.........../|
000010e0  2a 20 41 4c 3d 31 20 66  6f 72 20 73 65 74 74 69  |* AL=1 for setti|
000010f0  6e 67 20 2a 2f 09 0d 0a  09 72 65 67 73 2e 78 2e  |ng */....regs.x.|
00001100  62 78 20 3d 20 68 61 6e  64 6c 65 3b 09 09 09 09  |bx = handle;....|
00001110  2f 2a 20 68 61 6e 64 6c  65 20 6f 66 20 6f 70 65  |/* handle of ope|
00001120  6e 20 66 69 6c 65 20 2a  2f 0d 0a 09 72 65 67 73  |n file */...regs|
00001130  2e 78 2e 63 78 20 3d 20  2a 20 28 28 69 6e 74 20  |.x.cx = * ((int |
00001140  2a 29 66 74 62 75 66 29  3b 0d 0a 09 72 65 67 73  |*)ftbuf);...regs|
00001150  2e 78 2e 64 78 20 3d 20  2a 20 28 28 69 6e 74 20  |.x.dx = * ((int |
00001160  2a 29 66 74 62 75 66 20  2b 20 31 29 3b 09 2f 2a  |*)ftbuf + 1);./*|
00001170  20 74 69 6d 65 20 69 6e  66 6f 20 69 6e 20 43 58  | time info in CX|
00001180  20 61 6e 64 20 44 58 20  2a 2f 0d 0a 09 69 6e 74  | and DX */...int|
00001190  64 6f 73 28 26 72 65 67  73 2c 26 72 65 67 73 29  |dos(&regs,&regs)|
000011a0  3b 0d 0a 09 69 66 20 28  72 65 67 73 2e 78 2e 63  |;...if (regs.x.c|
000011b0  66 6c 61 67 29 0d 0a 09  09 72 65 74 75 72 6e 20  |flag)....return |
000011c0  2d 31 3b 09 09 09 09 09  2f 2a 20 72 65 74 75 72  |-1;...../* retur|
000011d0  6e 20 2d 31 20 69 66 20  65 72 72 6f 72 20 6f 63  |n -1 if error oc|
000011e0  63 75 72 72 65 64 20 2a  2f 0d 0a 09 65 6c 73 65  |curred */...else|
000011f0  0d 0a 09 09 72 65 74 75  72 6e 20 30 3b 0d 0a 7d  |....return 0;..}|
00001200  0d 0a 0d 0a 69 6e 74 20  67 65 74 73 79 73 74 69  |....int getsysti|
00001210  6d 65 28 74 62 75 66 29  0d 0a 73 74 72 75 63 74  |me(tbuf)..struct|
00001220  20 46 54 49 4d 45 20 2a  74 62 75 66 3b 0d 0a 7b  | FTIME *tbuf;..{|
00001230  0d 0a 09 75 6e 69 6f 6e  20 52 45 47 53 20 72 65  |...union REGS re|
00001240  67 73 3b 0d 0a 0d 0a 09  72 65 67 73 2e 78 2e 61  |gs;.....regs.x.a|
00001250  78 20 3d 20 30 78 32 43  30 30 3b 09 09 09 09 2f  |x = 0x2C00;..../|
00001260  2a 20 66 75 6e 63 74 69  6f 6e 20 32 43 20 3d 20  |* function 2C = |
00001270  67 65 74 20 73 79 73 74  65 6d 20 74 69 6d 65 20  |get system time |
00001280  2a 2f 0d 0a 09 69 6e 74  64 6f 73 28 26 72 65 67  |*/...intdos(&reg|
00001290  73 2c 26 72 65 67 73 29  3b 0d 0a 0d 0a 09 74 62  |s,&regs);.....tb|
000012a0  75 66 2d 3e 66 74 5f 74  73 65 63 3d 72 65 67 73  |uf->ft_tsec=regs|
000012b0  2e 68 2e 64 68 2f 32 3b  0d 0a 09 74 62 75 66 2d  |.h.dh/2;...tbuf-|
000012c0  3e 66 74 5f 6d 69 6e 3d  72 65 67 73 2e 68 2e 63  |>ft_min=regs.h.c|
000012d0  6c 3b 0d 0a 09 74 62 75  66 2d 3e 66 74 5f 68 6f  |l;...tbuf->ft_ho|
000012e0  75 72 3d 72 65 67 73 2e  68 2e 63 68 3b 0d 0a 0d  |ur=regs.h.ch;...|
000012f0  0a 09 72 65 67 73 2e 78  2e 61 78 20 3d 20 30 78  |..regs.x.ax = 0x|
00001300  32 41 30 30 3b 09 09 09  09 2f 2a 20 66 75 6e 63  |2A00;..../* func|
00001310  74 69 6f 6e 20 32 41 20  3d 20 67 65 74 20 73 79  |tion 2A = get sy|
00001320  73 74 65 6d 20 64 61 74  65 20 2a 2f 0d 0a 09 69  |stem date */...i|
00001330  6e 74 64 6f 73 28 26 72  65 67 73 2c 26 72 65 67  |ntdos(&regs,&reg|
00001340  73 29 3b 0d 0a 0d 0a 09  74 62 75 66 2d 3e 66 74  |s);.....tbuf->ft|
00001350  5f 64 61 79 3d 72 65 67  73 2e 68 2e 64 6c 3b 0d  |_day=regs.h.dl;.|
00001360  0a 09 74 62 75 66 2d 3e  66 74 5f 6d 6f 6e 74 68  |..tbuf->ft_month|
00001370  3d 72 65 67 73 2e 68 2e  64 68 3b 0d 0a 09 74 62  |=regs.h.dh;...tb|
00001380  75 66 2d 3e 66 74 5f 79  65 61 72 3d 72 65 67 73  |uf->ft_year=regs|
00001390  2e 78 2e 63 78 2d 31 39  38 30 3b 0d 0a 7d 0d 0a  |.x.cx-1980;..}..|
000013a0  09 0d 0a 0d 0a 23 69 66  64 65 66 20 5a 43 0d 0a  |.....#ifdef ZC..|
000013b0  0d 0a 2f 2a 20 54 68 65  20 66 6f 6c 6c 6f 77 69  |../* The followi|
000013c0  6e 67 20 72 6f 75 74 69  6e 65 20 69 73 20 6e 65  |ng routine is ne|
000013d0  65 64 65 64 20 62 65 63  61 75 73 65 20 69 6e 74  |eded because int|
000013e0  64 6f 73 20 69 6e 20 5a  6f 72 6c 61 6e 64 20 43  |dos in Zorland C|
000013f0  0d 0a 20 20 20 64 6f 65  73 6e 27 74 20 72 65 74  |..   doesn't ret|
00001400  75 72 6e 20 74 68 65 20  63 61 72 72 79 20 66 6c  |urn the carry fl|
00001410  61 67 20 63 6f 72 72 65  63 74 6c 79 0d 0a 20 20  |ag correctly..  |
00001420  20 55 73 69 6e 67 20 27  23 64 65 66 69 6e 65 20  | Using '#define |
00001430  69 6e 74 64 6f 73 20 6e  65 77 69 6e 74 64 6f 73  |intdos newintdos|
00001440  27 20 61 62 6f 76 65 20  63 61 75 73 65 73 20 74  |' above causes t|
00001450  68 69 73 20 72 6f 75 74  69 6e 65 0d 0a 20 20 20  |his routine..   |
00001460  74 6f 20 62 65 20 73 75  62 73 74 69 74 75 74 65  |to be substitute|
00001470  64 20 61 6e 64 20 66 69  78 65 73 20 74 68 65 20  |d and fixes the |
00001480  70 72 6f 62 6c 65 6d 2e  0d 0a 2a 2f 0d 0a 0d 0a  |problem...*/....|
00001490  23 75 6e 64 65 66 20 69  6e 74 64 6f 73 0d 0a 0d  |#undef intdos...|
000014a0  0a 69 6e 74 20 6e 65 77  69 6e 74 64 6f 73 28 72  |.int newintdos(r|
000014b0  65 67 73 69 6e 2c 72 65  67 73 6f 75 74 29 0d 0a  |egsin,regsout)..|
000014c0  75 6e 69 6f 6e 20 52 45  47 53 20 2a 72 65 67 73  |union REGS *regs|
000014d0  69 6e 2c 2a 72 65 67 73  6f 75 74 3b 0d 0a 7b 0d  |in,*regsout;..{.|
000014e0  0a 09 69 6e 74 20 66 6c  61 67 3d 69 6e 74 64 6f  |..int flag=intdo|
000014f0  73 28 72 65 67 73 69 6e  2c 72 65 67 73 6f 75 74  |s(regsin,regsout|
00001500  29 3b 0d 0a 09 72 65 67  73 6f 75 74 2d 3e 78 2e  |);...regsout->x.|
00001510  63 66 6c 61 67 20 3d 20  66 6c 61 67 20 26 20 31  |cflag = flag & 1|
00001520  3b 0d 0a 09 72 65 74 75  72 6e 20 66 6c 61 67 3b  |;...return flag;|
00001530  0d 0a 7d 0d 0a 23 65 6e  64 69 66 0d 0a           |..}..#endif..|
0000153d
06-05-88/SETFT/C.m0
06-05-88/SETFT/C.m1
06-05-88/SETFT/C.m2
06-05-88/SETFT/C.m4
06-05-88/SETFT/C.m5