gno/bin/vi/mk.c
gdr-ftp 784e3de7cd Initial checkin of aroff, binprint, center, less, ls, make, makemake,
passwd, ps, purge, shutdown, stty, upper, and vi.  These sources are
for the versions of the utils shipped with GNO v2.0.4.
1998-03-09 08:30:21 +00:00

49 lines
856 B
C

/*
* STEVIE - Simply Try this Editor for VI Enthusiasts
*
* Code Contributions By : Tim Thompson twitch!tjt
* Tony Andrews onecom!wldrdg!tony
* G. R. (Fred) Walter watmath!grwalter
*/
#include "stevie.h"
char *
mkline(int n)
{
static char lbuf[9];
int i = 6;
strcpy(lbuf, " ");
lbuf[i--] = (char) ((n % 10) + '0');
n /= 10;
if (n != 0) {
lbuf[i--] = (char) ((n % 10) + '0');
n /= 10;
}
if (n != 0) {
lbuf[i--] = (char) ((n % 10) + '0');
n /= 10;
}
if (n != 0) {
lbuf[i--] = (char) ((n % 10) + '0');
n /= 10;
}
if (n != 0)
lbuf[i] = (char) ((n % 10) + '0');
return lbuf;
}
char *
mkstr(char c)
{
static char s[2];
s[0] = c;
s[1] = NUL;
return s;
}