ack/lang/pc/libpc/wri.c

77 lines
1.2 KiB
C
Raw Normal View History

1994-06-24 14:02:31 +00:00
/* $Id$ */
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
*
*/
2018-06-17 20:30:27 +00:00
#include "pc.h"
1984-07-20 10:44:57 +00:00
1990-11-06 13:02:55 +00:00
#ifndef EM_WSIZE
#ifdef _EM_WSIZE
#define EM_WSIZE _EM_WSIZE
#endif
#endif
2018-06-17 14:11:29 +00:00
#if EM_WSIZE == 4
1987-03-31 10:58:30 +00:00
#define SZ 11
#define MININT -2147483648
#define STRMININT "-2147483648"
#endif
2018-06-17 14:11:29 +00:00
#if EM_WSIZE == 2
1987-03-31 10:58:30 +00:00
#define SZ 6
#define MININT -32768
#define STRMININT "-32768"
#endif
2018-06-17 14:11:29 +00:00
#if EM_WSIZE == 1
1987-03-31 10:58:30 +00:00
#define SZ 4
#define MININT -128
#define STRMININT "-128"
#endif
#ifndef STRMININT
2018-06-17 14:11:29 +00:00
Something wrong here !
1987-03-31 10:58:30 +00:00
#endif
2018-06-17 20:30:27 +00:00
void _wsi(int w, int i, struct file* f)
2018-06-17 14:11:29 +00:00
{
char* p;
int j;
char buf[SZ];
1984-07-20 10:44:57 +00:00
2018-06-17 14:11:29 +00:00
if (w < 0)
_trp(EWIDTH);
1987-03-31 10:58:30 +00:00
p = &buf[SZ];
2018-06-17 14:11:29 +00:00
if ((j = i) < 0)
{
if (i == MININT)
{
_wstrin(w, SZ, STRMININT, f);
1984-07-20 10:44:57 +00:00
return;
}
j = -j;
}
do
2018-06-17 14:11:29 +00:00
*--p = '0' + j % 10;
1984-07-20 10:44:57 +00:00
while (j /= 10);
2018-06-17 14:11:29 +00:00
if (i < 0)
1984-07-20 10:44:57 +00:00
*--p = '-';
2018-06-17 14:11:29 +00:00
_wstrin(w, (int)(&buf[SZ] - p), p, f);
1984-07-20 10:44:57 +00:00
}
2018-06-17 20:30:27 +00:00
void _wri(int i, struct file* f)
2018-06-17 14:11:29 +00:00
{
_wsi(SZ, i, f);
1984-07-20 10:44:57 +00:00
}