1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791
|
/*
splitvt
A fun utility designed to split your screen into twin shells.
-Sam Lantinga 10/5/93
An interesting note:
1.6.3 was released in 1995, and 1.6.4 in 2000 - 5 years between patches!
1.6.4 was released in 2001, and 1.6.6 in 2006 - 5 years between patches!
*/
static char *version=
"@(#)Splitvt 1.6.6 3/11/2006 -Sam Lantinga (slouken@devolution.com)\n";
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/wait.h>
#include <fcntl.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <pwd.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "splitvt.h"
#include "vt100.h"
#include "vtmouse.h"
/* With xterm support, cut and paste is disabled and the title bar is
reset to the string "xterm" after splitvt quits. Not desirable in
some cases.. ;^)
*/
#define X_SUPPORT /* Define X_SUPPORT if you want xterm support */
#define XTITLE /* Define this for an xterm title bar */
#ifdef NEED_SELECT_H
#include <sys/select.h>
#endif
#ifdef NEED_INET_H
#include <sys/inet.h>
#endif
#ifndef SIGCLD /* BSD */
#define SIGCLD SIGCHLD
#endif
extern char tty_name[]; /* From misc.c about get_master_pty() */
static char upper_tty[64]={'\0'}; /* tty_name of the upper window */
static char lower_tty[64]={'\0'}; /* tty_name of the lower window */
static struct passwd *pw=NULL; /* Our passwd entry pointer */
static void finish(), move_bar(), winch();
extern void lock_screen(); /* From lock.c */
void normal_input();
static int insert_dash();
static int isalive();
char extract();
void splitvtrc();
void (*do_input)() = normal_input;
static char selection[BUFSIZ]; /* Screen selection buffer */
static int topok=1, bottomok=1; /* I/O flags */
static int toppid=0, bottompid=0; /* Children */
static int ttyfd=0, thisfd; /* I/O file descriptors */
static int topfd, bottomfd; /* Master file descriptors */
int stbottom=0; /* Start in the bottom vt? */
/* Special characters */
char command_c=COMMAND,
switch_c=SWITCH,
quote_c=QUOTE;
int dologin=0; /* Do the shells run as login shells? */
/* The command to run in each window */
char *upper_args[MAX_ARGS+1]={NULL}, *lower_args[MAX_ARGS+1]={NULL};
int upper_empty=1, lower_empty=1;
int force_height=0;
void print_usage(argv)
char *argv;
{
fprintf(stderr, "\nUsage: %s [options] [shell]\n\n", argv);
fprintf(stderr, "Options:\n");
fprintf(stderr, "\t-s numlines\t\tSets 'numlines' to the number of lines\n");
fprintf(stderr, "\t\t\t\tin the top window. This number will\n");
fprintf(stderr, "\t\t\t\tbe modified if the screen isn't big\n");
fprintf(stderr, "\t\t\t\tenough to handle the full size.\n\n");
fprintf(stderr, "\t-t title\t\tSets the xterm title bar to 'title'\n");
fprintf(stderr, "\t-upper command\t\tRuns 'command' in the upper window\n");
fprintf(stderr, "\t-lower command\t\tRuns 'command' in the lower window\n");
fprintf(stderr, "\t-bottom\t\t\tStarts in the lower window\n");
fprintf(stderr, "\t-login\t\t\tRuns programs as if they were login shells\n");
fprintf(stderr, "\t-nologin\t\tOverrides \"set login on\" in startup file\n");
fprintf(stderr, "\t-rcfile file\t\tLoads 'file' at startup instead of ~/.splitvtrc\n");
fprintf(stderr, "\t-norc\t\t\tSuppresses loading your startup file\n");
fprintf(stderr, "\t-f\t\t\tAllow setting screen size of less than 3 lines\n");
fprintf(stderr, "\t-v\t\t\tPrint out the version number\n");
fprintf(stderr, "\n");
exit(1);
}
int main(argc, argv)
int argc;
char *argv[];
{
extern int errno, optind;
extern char *optarg;
int i, len, maxfds, numready;
char buffer[BUFSIZ], *ptr;
char *xterm_title=NULL;
#ifdef NEED_INET_H
struct timeval tv;
#endif
struct timeval *tvptr;
fd_set read_mask;
static struct passwd pwdata; /* Our passwd entry */
struct event X_event;
int on_separator=0;
/* Are we called sanely? */
if ( argv == NULL || argv[0] == NULL ) {
fprintf(stderr, "%s is NULL! aborting.\n",
argv == NULL ? "argv" : "argv[0]");
exit(-1);
}
#ifdef NEED_INET_H
/* There is a bug in the Wallabong Group's implementation
of select(). It will not work properly with fd 0 */
if ( (ttyfd=dup(0)) < 0 )
{
perror("dup() error");
exit(2);
}
#endif
/* First, get default options from ~/.splitvtrc */
for ( i=1; argv[i]; ++i ) {
if ( strcmp(argv[i], "-norc") == 0 ) {
i=0;
break;
} else if ( strcmp(argv[i], "-rcfile") == 0 ) {
if ( ! argv[++i] )
print_usage(argv[0]);
startupfile=argv[i];
}
}
if ( i )
splitvtrc();
/* Parse command line options */
while ( (i=getopt(argc, argv, "fn:u:l:r:b:s:t:vh")) != EOF )
{
switch (i)
{
case 'n': if ( strcmp(optarg, "ologin") == 0 )
dologin=0;
else if ( strcmp(optarg, "orc") != 0 )
print_usage(argv[0]);
/* Already handled above */
break;
case 'u': if ( strcmp(optarg, "pper") != 0 )
print_usage(argv[0]);
if (optind >= argc) {
fprintf(stderr, "-upper requires an argument\n");
print_usage(argv[0]);
}
tokenize(upper_args, MAX_ARGS+1,
argv[optind++], " ");
upper_empty=0;
break;
case 'l': if ( strcmp(optarg, "ower") == 0 ) {
if (optind >= argc) {
fprintf(stderr, "-lower requires an argument\n");
print_usage(argv[0]);
}
tokenize(lower_args, MAX_ARGS+1,
argv[optind++], " ");
lower_empty=0;
} else if ( strcmp(optarg, "ogin") == 0 ) {
dologin=1;
} else
print_usage(argv[0]);
break;
case 'b': if ( strcmp(optarg, "ottom") ==0)
stbottom=1;
else
print_usage(argv[0]);
break;
case 'r': if ( strcmp(optarg, "cfile") != 0 )
print_usage(argv[0]);
else /* Already handled above */
++optind;
break;
case 's': UU_lines=atoi(optarg);
break;
case 't': xterm_title=optarg;
break;
case 'v': printf("%s", version+4);
exit(0);
break;
case 'f': force_height=1;
break;
case 'h':
default: print_usage(argv[0]);
break;
}
}
argv+=(optind-1);
/* Retrieve and save our passwd entry */
if ( (pw=(struct passwd *)getpwuid(getuid())) == NULL ) {
fprintf(stderr,
"Warning: Can't find your passwd entry; no utmp logging.\n");
sleep(2);
} else { /* Save the passwd entry for future reference */
d_copy((char *)pw, (char *)&pwdata, sizeof(pwdata));
pw=(&pwdata);
}
if ( tty_getmode(ttyfd) < 0 )
{
fprintf(stderr, "Can't get terminal settings.\n");
exit(2);
}
(void) tty_raw(0); /* Set the tty raw here to prevent lost input */
if ( (ptr=init_vt100(1)) != NULL )
{
if ( tty_reset(0) < 0 )
(void) tty_sane(0);
fprintf(stderr, "\rCan't initialize screen: %s\n", ptr);
exit(3);
}
#ifdef X_SUPPORT
#ifdef XTITLE
/* Make the title bar the version string, strip extraneous info. */
if ( xterm_title == NULL ) {
strcpy(buffer, version+4);
buffer[39]='\0';
xterm_title=buffer;
}
#endif
/* This must be called before pty_open() */
(void) event_init(stdin, stdout, xterm_title);
#endif /* X_SUPPORT */
selection[0]='\0';
if ( argv[1] ) {
if ( upper_empty ) {
for ( i=0; argv[i+1] && i<MAX_ARGS; ++i )
upper_args[i]=argv[i+1];
upper_args[i]=NULL;
}
if ( lower_empty ) {
for ( i=0; argv[i+1] && i<MAX_ARGS; ++i )
lower_args[i]=argv[i+1];
lower_args[i]=NULL;
}
} else {
if ( upper_args[0] == NULL ) {
if (((upper_args[0]=(char *)getenv("SHELL")) == NULL) ||
(*upper_args[0] == '\0') )
upper_args[0]=SHELL;
upper_args[1]=NULL;
}
if ( lower_args[0] == NULL ) {
if (((lower_args[0]=(char *)getenv("SHELL")) == NULL) ||
(*lower_args[0] == '\0') )
lower_args[0]=SHELL;
lower_args[1]=NULL;
}
}
if ( dologin ) {
(void) insert_dash(upper_args);
(void) insert_dash(lower_args);
}
#ifdef NEED_INET_H
signal(SIGCLD, SIG_IGN);
#endif
if ( (topfd=pty_open(upper_args, &toppid, UPPER)) < 0 )
{
end_vt100();
switch (errno) {
case EIO:
case EPERM:
case ENOENT:
fprintf(stderr, "No available pseudo terminals.\n");
break;
case EAGAIN:
fprintf(stderr, "No more processes, try again later.\n");
break;
default:
perror("pty_open() error");
}
finish(0);
} else if ( pw ) {
(void) strcpy(upper_tty, tty_name);
(void) addutmp(pw->pw_name, pw->pw_uid, upper_tty);
}
if ( (bottomfd=pty_open(lower_args, &bottompid, LOWER)) < 0 )
{
end_vt100();
switch (errno) {
case EIO:
case EPERM:
case ENOENT:
fprintf(stderr, "No available pseudo terminals.\n");
break;
case EAGAIN:
fprintf(stderr, "No more processes, try again later.\n");
break;
default:
perror("pty_open() error");
}
finish(0);
} else if ( pw ) {
(void) strcpy(lower_tty, tty_name);
(void) addutmp(pw->pw_name, pw->pw_uid, lower_tty);
}
if (stbottom)
thisfd=bottomfd;
else thisfd=topfd;
#if defined(_POSIX_SOURCE) || defined(m88k)
#include <limits.h>
/* This is lifted from Richard Stevens. -Thanks! */
#ifdef OPEN_MAX
maxfds=OPEN_MAX;
#else
#define OPEN_MAX_GUESS 256 /* if OPEN_MAX is indeterminate */
/* this may be inadequate */
if ( (maxfds = sysconf(_SC_OPEN_MAX)) < 0) {
maxfds=OPEN_MAX_GUESS;
}
#endif
#else /* Not POSIX SOURCE */
#if defined(SOLARIS) || defined(HAVE_BSDTTY_H) || defined(HP_UX)
maxfds=32; /* Any comments? This is a WAG */
#else
maxfds=getdtablesize();
#endif
#endif /* _POSIX_SOURCE */
/* Set select() timeout, and zero out the read mask */
#ifdef NEED_INET_H
tv.tv_sec=3;
tv.tv_usec=0;
tvptr=&tv;
#else
tvptr=NULL;
#endif
signal(SIGHUP, finish);
signal(SIGINT, finish);
signal(SIGQUIT, finish);
signal(SIGTERM, finish);
signal(SIGSEGV, finish);
#ifdef SIGBUS
signal(SIGBUS, finish);
#endif
#ifdef SIGWINCH
signal(SIGWINCH, winch);
#endif
for ( SET_WIN(); (topok || bottomok); )
{
FD_ZERO(&read_mask);
FD_SET(ttyfd, &read_mask);
/* Make sure the children are still alive */
if ( ! isalive() )
break;
if ( topok )
FD_SET(topfd, &read_mask);
if ( bottomok )
FD_SET(bottomfd, &read_mask);
if ( (numready=select(maxfds, &read_mask, NULL, NULL, tvptr))
<= 0 )
{
#ifndef NEED_INET_H /* Wallabong select() is buggy */
switch (errno)
{
case EIO: /* The program is finished. */
break;
case EINTR: /* Probably SIGWINCH */
break;
default: perror("select() error");
fprintf(stderr, "\r");
break;
}
if ( errno != EINTR )
finish(0);
else
continue;
#endif
}
if ( FD_ISSET(ttyfd, &read_mask) )
{
do {
int c;
if ( (c=event_getc(&X_event)) == EOF )
finish(0);
if ( X_event.happening ) {
/* Work only on button press */
if ( ! BUTTON_ISSET(X_event, RELEASE) ) {
/* Mouse click in which winow? */
if ( X_event.x <= WU_lines )
{
if ( topok )
thisfd=topfd;
SET_WIN();
} else
if ( X_event.x > (WU_lines+1) )
{
if ( bottomok )
thisfd=bottomfd;
SET_WIN();
} else
on_separator=X_event.x;
if ( BUTTON_ISSET(X_event, BUTTON_2) ) {
strcpy(selection, vt_getselbuf());
write(thisfd, selection, strlen(selection));
}
} else if ( on_separator ) {
move_bar(X_event.x-on_separator);
on_separator=0;
}
#ifdef REPORT_SELECTION
if ( (X_event.button_state&SELECTED) == SELECTED ) {
vt_setsel(selection, BUFSIZ-1,
X_event.selection.begin_row,
X_event.selection.end_row,
X_event.selection.begin_col,
X_event.selection.end_col);
vt_setselbuf(selection);
}
#endif
} else if ( c )
do_input(c);
} while (terminal_input);
}
if ( FD_ISSET(bottomfd, &read_mask) )
{
if ( (len=read(bottomfd, buffer, BUFSIZ)) <= 0 )
{
switch (errno)
{
case EIO: /*break;*/
default: if ( isalive() < 0 )
finish(0);
}
}
else {
(void) vt_write(LOWER, buffer, len, &bottomfd);
if ( thisfd == topfd )
SET_WIN();
}
}
if ( FD_ISSET(topfd, &read_mask) )
{
if ( (len=read(topfd, buffer, BUFSIZ)) <= 0 )
{
switch (errno)
{
case EIO: /*break;*/
default: if ( isalive() < 0 )
finish(0);
}
}
else {
(void) vt_write(UPPER, buffer, len, &topfd);
if ( thisfd == bottomfd )
SET_WIN();
}
}
}
finish(0);
exit(0);
}
void reset_bar(sleeptime)
int sleeptime;
{
sleep(sleeptime);
vt_info(NULL);
}
/* Print out a help screen for the escapes */
void print_help()
{
static char *help[] = {
"Escape commands: ",
" '-' Shrink the current window",
" '+' Expand the current window",
" 'k' Kill the current window",
" 'r' Refresh the screen",
" 'c' Copy selection",
" 'p' Paste selection",
" 'x' Lock the screen",
" 'h' Show this help screen",
" 'q' Quickly quit splitvt",
" '0-9' Line count for + or -",
NULL
};
vt_showscreen("Splitvt HELP screen:", help);
}
void normal_input(c)
char c;
{
char message[BUFSIZ];
int pid;
static int param=0;
if ( c == quote_c ) {
read(ttyfd, &c, 1);
goto writeit;
} else if ( c == switch_c ) {
if ( (thisfd == topfd) && bottomok )
thisfd=bottomfd;
else if ( topok )
thisfd=topfd;
SET_WIN();
} else if ( c == command_c ) {
promptch:
c=vt_prompt(PROMPT);
switch (c) {
/* Shrink current window */
case '-': if ( ! param )
param=1;
move_bar(thisfd == topfd ? -param : param);
param=0;
break;
/* Grow current window */
case '+': if ( ! param )
param=1;
move_bar(thisfd == topfd ? param : -param);
param=0;
break;
/* Kill a window */
case 'k': sprintf(message, "Kill %s window? [Y/n]: ",
(thisfd == topfd) ? "upper" : "lower");
switch(vt_prompt(message)) {
case 'N':
case 'n': break;
/* Kill with hangup signal */
default: pid=((thisfd == topfd) ?
toppid : bottompid);
(void) kill(pid, SIGHUP);
break;
}
vt_info(NULL);
break;
/* Copy selection */
case 'c': vt_getsel(CUR_WIN(), selection, BUFSIZ);
vt_setselbuf(selection);
reset_bar(1);
break;
/* Paste selection */
case 'p': strcpy(selection, vt_getselbuf());
write(thisfd, selection, strlen(selection));
break;
/* Lock the screen */
case 'x': vt_info("Enter password: ");
do_input=lock_screen;
break;
/* Repaint the screen */
case 'r': vt_redraw();
break;
/* Quick exit */
case 'q': finish(0);
break;
/* Print a quick help screen */
case '?':
case 'h': print_help();
break;
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9': /* Set numeric parameter */
param *= 10;
param += (c-'0');
goto promptch;
break;
default: break;
}
}
else { writeit:
write(thisfd, &c, 1);
}
}
/* A better child checker. :) It gathers the status of the child,
rendering it free and un-zombied. :) */
static int isalive()
{
int status;
#if ! defined(WNOHANG) || defined(NEED_INET_H)
if ( topok )
if ( kill(toppid, 0) < 0 )
{
if ( pw && upper_tty[0])
{
(void) delutmp(pw->pw_name, upper_tty);
upper_tty[0] = '\0';
}
if ( thisfd == topfd )
thisfd=bottomfd;
(void) close(topfd);
topok=0;
SET_WIN();
}
if ( bottomok )
if ( kill(bottompid, 0) < 0 )
{
if ( pw && lower_tty[0])
{
(void) delutmp(pw->pw_name, lower_tty);
lower_tty[0] = '\0';
}
if ( thisfd == bottomfd )
thisfd=topfd;
(void) close(bottomfd);
bottomok=0;
SET_WIN();
}
#else
#ifdef HAVE_WAIT4 /* For BSD 4.3 */
#define waitpid(pid, status, options) wait4(pid, status, options, NULL)
#endif /* HAVE_WAIT4 */
if ( topok )
if ( waitpid(toppid, &status, WNOHANG) != 0 )
{
if ( pw && upper_tty[0])
{
(void) delutmp(pw->pw_name, upper_tty);
upper_tty[0] = '\0';
}
if ( thisfd == topfd )
thisfd=bottomfd;
(void) close(topfd);
topok=0;
SET_WIN();
}
if ( bottomok )
if ( waitpid(bottompid, &status, WNOHANG) != 0 )
{
if ( pw && lower_tty[0])
{
(void) delutmp(pw->pw_name, lower_tty);
lower_tty[0] = '\0';
}
if ( thisfd == bottomfd )
thisfd=topfd;
(void) close(bottomfd);
bottomok=0;
SET_WIN();
}
#endif
if ( topok || bottomok )
return(1);
return(0);
}
/* Cleanup routine */
static void finish(sig)
int sig;
{
/* Only call this routine after tty_getmode() has been called */
/* The tty_reset() call flushes the tty's input buffers. */
if ( tty_reset(0) < 0 )
(void) tty_sane(0);
/* Reset the vt100 window */
end_vt100();
event_quit();
/* Reset our utmp entries */
if ( pw && topok && upper_tty[0] )
(void) delutmp(pw->pw_name, upper_tty);
if ( pw && bottomok && lower_tty[0] )
(void) delutmp(pw->pw_name, lower_tty);
if ( sig )
printf("Exiting due to signal: %d\n", sig);
exit(sig);
}
/* Move the separator bar up and down. We can do this now, because
init_vt100() properly refreshes the screen (we hope) ;-)
*/
static void move_bar(howfar)
int howfar;
{
int tmp_uulines;
/* Don't redraw the screen if there is no movement on the bar */
if ( ! howfar )
return;
tmp_uulines=UU_lines;
UU_lines=WU_lines;
UU_lines += howfar; /* Positive to go down, negative to go up */
init_vt100(0); /* Reset the windows to the new size */
/* Tell the running processes about the size change */
if ( topok )
pty_setwin(topfd, UPPER);
if ( bottomok )
pty_setwin(bottomfd, LOWER);
UU_lines=tmp_uulines;
}
/* Resize the window... unfortunately, this means that the
current window is erased. Oh well.. :)
Ah hah! As of 1.6.0, the window is refreshed. :)
*/
static void winch(sig)
int sig;
{
char *ptr;
signal(sig, winch);
if ( (ptr=init_vt100(1)) != NULL ) {
fprintf(stderr, "Can't resize window: %s. (exiting)\n", ptr);
finish(0);
} else
SET_WIN();
if ( topok )
pty_setwin(topfd, UPPER);
if ( bottomok )
pty_setwin(bottomfd, LOWER);
}
static int insert_dash(args)
char *args[];
{
char *temp;
if ( (temp=(char *)malloc(strlen(args[0])+2)) == NULL )
return(-1);
sprintf(temp, "-%s", args[0]);
args[0]=temp; /* Possible memory leak.. who cares? */
return(0);
}
|