mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-19 11:30:51 +00:00
784e3de7cd
passwd, ps, purge, shutdown, stty, upper, and vi. These sources are for the versions of the utils shipped with GNO v2.0.4.
49 lines
856 B
C
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;
|
|
}
|