Prepare 0.38.0 release

This commit is contained in:
Michiel Broek
2003-10-03 19:48:15 +00:00
parent 3f28b714f4
commit d1c10dc2e2
7 changed files with 451 additions and 605 deletions

View File

@@ -79,6 +79,7 @@ void Unsetraw(void); /* Unset raw mode */
int Waitchar(unsigned char *, int); /* Wait n * 10mSec for char */
int Escapechar(unsigned char *); /* Escape sequence test */
char *xstrcpy(char *);
char *xstrcat(char *, char *);
char *padleft(char *str, int size, char pad);
void Striplf(char *String);
void colour(int, int);

View File

@@ -391,19 +391,34 @@ void disk_stat(void)
void soft_info(void)
{
char temp[81];
char temp[81], *p;
clr_index();
set_color(YELLOW, BLACK);
#ifdef __linux__
center_addstr( 6, (char *)"MBSE BBS (Linux)");
p = xstrcpy((char *)"MBSE BBS (GNU/Linux");
#elif __FreeBSD__
center_addstr( 6, (char *)"MBSE BBS (FreeBSD)");
p = xstrcpy((char *)"MBSE BBS (FreeBSD");
#elif __NetBSD__
center_addstr( 6, (char *)"MBSE BBS (NetBSD)");
p = xstrcpy((char *)"MBSE BBS (NetBSD");
#else
center_addstr( 6, (char *)"MBSE BBS (Unknown)");
p = xstrcpy((char *)"MBSE BBS (Unknown");
#endif
#ifdef __i386__
p = xstrcat(p, (char *)" i386)");
#elif __PPC__
p = xstrcat(p, (char *)" PPC)");
#elif __sparc__
p = xstrcat(p, (char *)" Sparc)");
#elif __alpha__
p = xstrcat(p, (char *)" Alpha)");
#elif __hppa__
p = xstrcat(p, (char *)" HPPA)");
#else
p = xstrcat(p, (char *)" Unknown)");
#endif
center_addstr( 6, p);
free(p);
set_color(WHITE, BLACK);
center_addstr( 8, (char *)COPYRIGHT);
set_color(YELLOW, BLACK);