ack/lang/pc/libpc/wri.c

73 lines
1.3 KiB
C
Raw Normal View History

1984-07-20 11:03:31 +00:00
/* $Header$ */
1984-07-20 11:20:12 +00:00
/*
* (c) copyright 1983 by the Vrije Universiteit, Amsterdam, The Netherlands.
*
* This product is part of the Amsterdam Compiler Kit.
*
* Permission to use, sell, duplicate or disclose this software must be
* obtained in writing. Requests for such permissions may be sent to
*
* Dr. Andrew S. Tanenbaum
* Wiskundig Seminarium
* Vrije Universiteit
* Postbox 7161
* 1007 MC Amsterdam
* The Netherlands
*
*/
1989-05-03 09:53:25 +00:00
#include <pc_err.h>
1984-07-20 10:44:57 +00:00
#include <pc_file.h>
extern _wstrin();
1990-11-06 13:02:55 +00:00
#ifndef EM_WSIZE
#ifdef _EM_WSIZE
#define EM_WSIZE _EM_WSIZE
#endif
#endif
1987-03-31 10:58:30 +00:00
#if EM_WSIZE==4
#define SZ 11
#define MININT -2147483648
#define STRMININT "-2147483648"
#endif
#if EM_WSIZE==2
#define SZ 6
#define MININT -32768
#define STRMININT "-32768"
#endif
#if EM_WSIZE==1
#define SZ 4
#define MININT -128
#define STRMININT "-128"
#endif
#ifndef STRMININT
Something wrong here!
#endif
1984-07-20 10:44:57 +00:00
_wsi(w,i,f) int w,i; struct file *f; {
1987-03-31 10:58:30 +00:00
char *p; int j; char buf[SZ];
1984-07-20 10:44:57 +00:00
1989-05-03 09:53:25 +00:00
if (w < 0) _trp(EWIDTH);
1987-03-31 10:58:30 +00:00
p = &buf[SZ];
1984-07-20 10:44:57 +00:00
if ((j=i) < 0) {
1987-03-31 10:58:30 +00:00
if (i == MININT) {
_wstrin(w,SZ,STRMININT,f);
1984-07-20 10:44:57 +00:00
return;
}
j = -j;
}
do
*--p = '0' + j%10;
while (j /= 10);
if (i<0)
*--p = '-';
1987-03-31 10:58:30 +00:00
_wstrin(w,&buf[SZ]-p,p,f);
1984-07-20 10:44:57 +00:00
}
_wri(i,f) int i; struct file *f; {
1987-03-31 10:58:30 +00:00
_wsi(SZ,i,f);
1984-07-20 10:44:57 +00:00
}