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
|
/*
** brec/bplay.c (C) David Monro 1996
**
** Copyright under the GPL - see the file COPYING in this directory
**
** Adapted by J.A. Bezemer for use with GramoFile - July 1998
*/
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <sys/time.h>
#include <sys/resource.h>
#ifdef linux
#include <libgen.h>
#endif
#ifndef __FreeBSD__
#include <sys/soundcard.h>
#else
#include <machine/soundcard.h>
#endif
/* Needed for BYTE_ORDER and BIG/LITTLE_ENDIAN macros. */
#ifndef _BSD_SOURCE
# define _BSD_SOURCE
# include <endian.h>
# undef _BSD_SOURCE
#else
# include <endian.h>
#endif
#include <sys/types.h>
#include <byteswap.h>
/* Adapted from the byteorder macros in the Linux kernel. */
#if BYTE_ORDER == LITTLE_ENDIAN
#define cpu_to_le32(x) (x)
#define cpu_to_le16(x) (x)
#else
#define cpu_to_le32(x) bswap_32((x))
#define cpu_to_le16(x) bswap_16((x))
#endif
#define le32_to_cpu(x) cpu_to_le32((x))
#define le16_to_cpu(x) cpu_to_le16((x))
#include "fmtheaders.h"
#include "../yesnowindow.h"
void init_curses(void);
void finish_curses(int sig);
#include "../errorwindow.h"
#include "../clrscr.h"
#include "../reclp_main.h"
#ifndef OLD_CURSES
#include <ncurses.h>
#else
#include <curses.h>
#endif
/* Types and constants */
typedef enum sndf_t {F_UNKNOWN, F_WAV, F_VOC, F_RAW} sndf_t;
#define MSPEED 1
#define MBITS 2
#define MSTEREO 4
/* Globals */
char *progname;
int forked;
/* Prototypes */
void Usage(void);
void ErrDie(char *err);
void Die(char *err);
void getbcount(int speed, int bits, int stereo, long *bcount,
long timelim, long samplim, long timejmp, long sampjmp, long *bjump);
void playraw(int thefd, char hd_buf[20], int speed, int bits, int stereo);
void playwav(int thefd, char hd_buf[20], int mods, int speed, int bits,
int stereo, long timelim, long samplim, long timejmp, long sampjmp );
/* was: void playwav(int thefd, char hd_buf[20], int mods, int speed, int bits, int stereo); */
void playvoc(int thefd, char hd_buf[20]);
/* extern globals */
extern int audio, abuf_size, fmt_mask;
/* extern prototypes */
extern void init_sound(int recorder);
extern void snd_parm(int speed, int bits, int stereo);
extern void init_shm(void);
extern void shmrec(int outfd, long bcount, int terminate);
extern void diskread(int outfd, long bcount, long skipped, char hd_buf[20],
int terminate, int speed, int bits, int stereo);
extern volatile void audiowrite(void);
extern void initsems(int disks, int snds);
extern void cleanupsems(void);
int main(int argc, char *argv[])
{
int recorder = 0; /* 1 if recording, 0 else */
int thefd; /* The file descriptor */
int speed, bits, stereo; /* Audio parameters */
long timelim; /* Recording time in secs */
long samplim; /* Recording time in samples */
long timejmp; /* Skip time in secs */
long sampjmp; /* Skip time in samples */
long bcount; /* Number of bytes to record */
long bjump; /* Number of bytes to skip */
int themask; /* Permission mask for file */
sndf_t filetype; /* The file type */
int mods; /* So user can override */
int optc; /* For getopt */
char *tmp = NULL; /* Do not clobber argv[0] */
init_curses();
#ifdef linux
tmp = strdup(argv[0]); /* POSIX basename may modify its arg */
progname = basename(tmp); /* For errors */
free(tmp);
#else
progname = strrchr(argv[0], '/'); /* Replacement for e.g. FreeBSD */
if (!progname || !*++progname)
progname = argv[0];
#endif
/* Ok, find out if we record or play */
if (strcmp(progname, "brec_gramo") == 0)
recorder = 1;
else
{
if (!(strcmp(progname, "bplay_gramo") == 0))
Die("must be called as bplay_gramo or brec_gramo");
else
recorder = 0;
}
/* Default values */
speed = 8000; bits = 8; stereo = 0;
timelim = 0; samplim = 0; bcount = 0;
timejmp = 0; sampjmp = 0; bjump = 0;
filetype = F_UNKNOWN;
mods = 0;
/* Parse the options */
while ((optc = getopt(argc, argv, "Ss:b:t:T:j:J:rvw")) != -1)
{
switch(optc)
{
case 's':
speed = atoi(optarg);
if (speed < 300)
speed *= 1000;
mods |= MSPEED;
break;
case 'b':
bits = atoi(optarg);
if ((bits != 8) && (bits != 16))
Usage();
mods |= MBITS;
break;
case 'S':
stereo = 1;
mods |= MSTEREO;
break;
case 't':
timelim = atol(optarg);
break;
case 'T':
samplim = atol(optarg);
break;
case 'j':
timejmp = atol(optarg);
break;
case 'J':
sampjmp = atol(optarg);
break;
case 'r':
filetype = F_RAW;
break;
case 'v':
filetype = F_VOC;
break;
case 'w':
filetype = F_WAV;
break;
default:
Usage();
}
}
#if 1
/* This program is either set-uid or run by root (I hope...) */
if (setpriority(PRIO_PROCESS, 0, -20) == -1)
#ifndef LP2CD
fprintf(stderr, "%s: setpriority: %s: continuing anyway\n",
progname, strerror(errno))
#endif
;
#endif /* 1 */
/* Drop out of suid mode before we open any files */
if(setreuid(geteuid(), getuid()) == -1)
{
#ifndef LP2CD
fprintf(stderr, "%s: setreuid: %s: continuing anyway\n",
progname, strerror(errno));
fprintf(stderr, "real uid = %d, effective uid = %d\n",
getuid(), geteuid());
#endif
}
/* Calculate the time limit in samples if need be */
if (optind > argc - 1)
{
if(recorder) /* No file, so stdin or stdout */
thefd = 1;
else
thefd = 0;
}
else
{
/* Open a file */
if(recorder)
{
/* Ok, get the mask for the opening the file */
themask = umask(0);
umask(themask);
if ((thefd = open(argv[optind], O_CREAT | O_TRUNC | O_WRONLY,
(~themask) & 0666)) == -1)
ErrDie(argv[optind]);
}
else
if ((thefd = open(argv[optind], O_RDONLY)) == -1)
ErrDie(argv[optind]);
}
/* Open and set up the audio device */
init_sound(recorder);
/* Check if the card is capable of the requested operation */
/*
** Can't check for stereo yet, just number of bits. Also,
** can't check for 12 bit operations yet.
*/
#if 0
if ((bits == 8) & !(fmt_mask & AFMT_U8)) Die("Format not supported by audio device");
if ((bits == 16) & !(fmt_mask & AFMT_S16_BE)) Die("Format not supported by audio device");
#endif
/* Set up the shared buffers and semaphore blocks */
init_shm();
/* Call the appropriate routine */
if (recorder)
{
getbcount(speed, bits, stereo, &bcount,
timelim, samplim, timejmp, sampjmp, &bjump);
#ifdef DEBUG
fprintf(stderr, "bcount: %ld\n", bcount);
#endif
/* By CS: */
clearscreen(RECLP_HEADERTEXT);
if (!yesno_window(
"Press Enter to start recording.",
" Start ", " Cancel ", 1))
{
close(thefd);
close(audio);
finish_curses(0);
}
header(RECLP_HEADERTEXT);
error_window_display(
"Press Enter to stop recording.", " Stop ");
/* End CS */
if (filetype == F_UNKNOWN)
filetype = F_RAW; /* Change to change default */
switch(filetype)
{
wavhead header;
case F_WAV:
/* Spit out header here... */
#ifndef LP2CD
fprintf(stderr, "Writing MS WAV sound file");
#endif
{
char *riff = "RIFF";
char *wave = "WAVE";
char *fmt = "fmt ";
char *data = "data";
memcpy(&(header.main_chunk), riff, 4);
header.length = cpu_to_le32(sizeof(wavhead)
- 8 + bcount);
memcpy(&(header.chunk_type), wave, 4);
memcpy(&(header.sub_chunk), fmt, 4);
header.sc_len = cpu_to_le32(16);
header.format = cpu_to_le16(1);
header.modus = cpu_to_le16(stereo + 1);
header.sample_fq = cpu_to_le32(speed);
header.byte_p_sec = cpu_to_le32(((bits > 8)?
2:1)*(stereo+1)*speed);
/* Correction by J.A. Bezemer: */
header.byte_p_spl = cpu_to_le16(((bits > 8)?
2:1)*(stereo+1));
/* was: header.byte_p_spl = (bits > 8)? 2:1; */
header.bit_p_spl = cpu_to_le16(bits);
memcpy(&(header.data_chunk), data, 4);
header.data_length = cpu_to_le32(bcount);
write(thefd, &header, sizeof(header));
}
case F_RAW:
if (filetype == F_RAW)
#ifndef LP2CD
fprintf(stderr, "Writing raw sound file")
#endif
;
#ifndef LP2CD
fprintf(stderr, ", %dHz, %dbit, %s\n", speed, bits, (stereo)? "stereo":"");
#endif
snd_parm(speed, bits, stereo);
initsems(0, 1);
shmrec(thefd, bcount, 1);
/* Rewrite header with updated length fields now
* that we know the true file size. Writing is done
* in a separate process, so it's easiest to gather
* the number of bytes written from fstat(). [dk]
*/
if (filetype == F_WAV &&
lseek(thefd, 0, SEEK_SET) != -1) {
struct stat st;
if (fstat(thefd, &st) != -1) {
header.length = cpu_to_le32(
(u_int32_t) (st.st_size - 8));
header.data_length = cpu_to_le32(
(u_int32_t) (st.st_size -
sizeof(header)));
write(thefd, &header, sizeof(header));
}
}
break;
case F_VOC:
/* Spit out header here... */
fprintf(stderr, "Writing CL VOC sound file");
fprintf(stderr, ", %dHz, %dbit, %s\n", speed, bits, (stereo)? "stereo":"");
{
vochead header;
blockTC ablk;
blockT9 bblk;
int i;
char fill = 0;
for (i=0;i<20;i++)
header.Magic[i] = VOC_MAGIC[i];
header.BlockOffset = cpu_to_le16(0x1a);
header.Version = cpu_to_le16(0x0114);
header.IDCode = cpu_to_le16(0x111F);
write(thefd, &header, sizeof(vochead));
snd_parm(speed, bits, stereo);
initsems(0, 1);
i = (bcount >= 0xFFFFF2)? 0xFFFFF2 + 12 : bcount;
ablk.BlockID = 9;
ablk.BlockLen[0] = (i + 12) & 0xFF;
ablk.BlockLen[1] = ((i + 12) >> 8) & 0xFF;
ablk.BlockLen[2] = ((i + 12) >> 16) & 0xFF;
bblk.SamplesPerSec = cpu_to_le32(speed);
bblk.BitsPerSample = bits;
bblk.Channels = stereo + 1;
bblk.Format = cpu_to_le16((bits == 8)? 0 : 4);
write(thefd, &ablk, sizeof(ablk));
write(thefd, &bblk, sizeof(bblk));
shmrec(thefd, i, 1);
write(thefd, &fill, 1);
}
break;
default:
Die("internal error - fell out of switch");
}
}
else
{
int count;
pid_t pid;
char hd_buf[20]; /* Holds first 20 bytes */
count = read(thefd, hd_buf, 20);
if (count < 0) ErrDie("read");
if (count < 20) Die("input file less than 20 bytes long.");
initsems(1, 0);
pid = fork();
if(!pid)
audiowrite(); /* Doesn't return */
forked = 1;
if (filetype == F_RAW)
playraw(thefd, hd_buf, speed, bits, stereo);
else
{
/* Pick the write output routine */
if(strstr(hd_buf, VOC_MAGIC) != NULL)
playvoc(thefd, hd_buf);
else if(strstr(hd_buf, "RIFF") != NULL)
playwav(thefd, hd_buf, mods, speed, bits, stereo,
timelim, samplim, timejmp, sampjmp);
else /* Assume raw data */
playraw(thefd, hd_buf, speed, bits, stereo);
}
wait(NULL);
cleanupsems();
}
finish_curses(0);
exit(0); /* Not reached, but keeps compiler happy. */
}
void Usage(void)
{
int i;
printw(
"Usage: %s [-S] [-s Hz] [-b 8|16] [-t secs] [-r|-v|-w] [filename]\n",
progname);
printw("\nPress any key...");
refresh();
i = getch();
finish_curses(-1);
exit(1);
}
void ErrDie(char * err)
{
char string[500];
sprintf(string, "%s: %s", err, strerror(errno));
error_window(string);
finish_curses(-1);
exit(-1);
}
void Die(char * err)
{
char string[500];
sprintf(string, "%s", err);
error_window(string);
finish_curses(-1);
exit(-1);
}
void getbcount(int speed, int bits, int stereo, long *bcount,
long timelim, long samplim, long timejmp, long sampjmp, long *bjump)
{
if(timelim)
{
/* fprintf(stderr,"tl=%ld, spd=%d, bits=%d\n",timelim, speed, bits); */
*bcount = speed*timelim*((bits+7)/8L);
/* fprintf(stderr,"bc=%ld\n",bcount); */
if (stereo) *bcount <<= 1;
/* fprintf(stderr,"bc2=%ld\n",bcount); */
}
if(samplim)
{
*bcount = samplim*((bits+7)/8L);
if (stereo) *bcount <<= 1;
}
if(timejmp)
{
*bjump = speed*timejmp*((bits+7)/8L);
if (stereo) *bjump <<= 1;
}
if(sampjmp)
{
*bjump = sampjmp*((bits+7)/8L);
if (stereo) *bjump <<= 1;
}
}
void playraw(int thefd, char hd_buf[20], int speed, int bits, int stereo)
{
fprintf(stderr, "Playing raw data : %d bit, Speed %d %s ...\n",
bits, speed, (stereo)? "Stereo" : "Mono");
diskread(thefd, 0,0, hd_buf, 1, speed, bits, stereo);
}
void playwav(int thefd, char hd_buf[20], int mods, int speed, int bits,
int stereo, long timelim, long samplim, long timejmp, long sampjmp )
{
wavhead wavhd;
int count;
long bcount = 0, bjump = 0;
memcpy((void*)&wavhd, (void*)hd_buf, 20);
count = read(thefd, ((char*)&wavhd)+20, sizeof(wavhd) - 20);
wavhd.length = le32_to_cpu(wavhd.length);
wavhd.sc_len = le32_to_cpu(wavhd.sc_len);
wavhd.format = le16_to_cpu(wavhd.format);
wavhd.modus = le16_to_cpu(wavhd.modus);
wavhd.sample_fq = le32_to_cpu(wavhd.sample_fq);
wavhd.byte_p_sec = le32_to_cpu(wavhd.byte_p_sec);
wavhd.byte_p_spl = le16_to_cpu(wavhd.byte_p_spl);
wavhd.bit_p_spl = le16_to_cpu(wavhd.bit_p_spl);
wavhd.data_length = le32_to_cpu(wavhd.data_length);
if(wavhd.format != 1) Die("Input is not a PCM WAV file");
#ifndef LP2CD
if (! (mods&MSPEED))
/* This should _not_ be overridden by the commandline options, for those
are always 44100 Hz 16 bit Stereo, and we want _all_ wavs to
play correctly. */
#endif
speed = wavhd.sample_fq;
#ifndef LP2CD
if (! (mods&MBITS))
#endif
bits = wavhd.bit_p_spl;
#ifndef LP2CD
if (! (mods&MSTEREO))
#endif
stereo = wavhd.modus - 1;
#ifndef LP2CD
fprintf(stderr, "Playing WAVE : %d bit, Speed %d %s ...\n",
bits, speed, (stereo)? "Stereo" : "Mono");
#endif
/* By CS: */
getbcount(speed, bits, stereo, &bcount, timelim, samplim,
timejmp, sampjmp, &bjump);
if (bjump) lseek(thefd, bjump, SEEK_CUR);
diskread(thefd, bcount, bjump, NULL, 1, speed, bits, stereo);
}
void playvoc(int thefd, char hd_buf[20])
{
int count;
int speed=0, bits=0, stereo=0;
int inloop=0, loop_times;
long bytecount, loop_pos=0;
vochead vochd;
blockTC ccblock;
int lastblocktype = -1;
int quit = 0;
fprintf(stderr, "Playing Creative Labs Voice file ...\n");
memcpy((void*)&vochd, (void*)hd_buf, 20);
count = read(thefd, ((char*)&vochd)+20, sizeof(vochd) - 20);
vochd.BlockOffset = le16_to_cpu(vochd.BlockOffset);
vochd.Version = le16_to_cpu(vochd.Version);
vochd.IDCode = le16_to_cpu(vochd.IDCode);
fprintf(stderr, "Format version %d.%d\n", vochd.Version>>8,
vochd.Version&0xFF);
if (vochd.IDCode != (~vochd.Version+0x1234))
fprintf(stderr, "Odd - version mismatch - %d != %d\n",
vochd.IDCode, ~vochd.Version+0x1234);
if(sizeof(vochd) < vochd.BlockOffset)
{
int off = vochd.BlockOffset - sizeof(vochd);
char *junk;
junk = (char*) malloc(off);
read(thefd, junk, off);
}
while(!quit)
{
if ((read(thefd, (char*)&ccblock, sizeof(ccblock))) == -1)
{
#ifdef DEBUG
fprintf(stderr, "Terminating\n");
#endif
diskread(thefd, -1,0, NULL, 1, speed, bits, stereo);
quit = 1;
continue;
}
#ifdef DEBUG
fprintf(stderr, "Block of type %d found\n", ccblock.BlockID);
#endif
switch(ccblock.BlockID)
{
case 1:
{
blockT1 tblock;
read(thefd, (char*)&tblock, sizeof(tblock));
if(tblock.PackMethod != 0) Die("Non PCM VOC block");
if (lastblocktype != 8)
{
speed = 256000000/(65536 - (tblock.TimeConstant << 8));
bits = 8;
stereo = 0;
}
bytecount = DATALEN(ccblock) -2;
diskread(thefd, bytecount,0, NULL, 0, speed, bits, stereo);
lastblocktype = 1;
}
break;
case 8:
{
blockT8 tblock;
read(thefd, (char*)&tblock, sizeof(tblock));
tblock.TimeConstant = le16_to_cpu(tblock.TimeConstant);
if(tblock.PackMethod != 0) Die("Non PCM VOC block");
speed = 256000000/(65536 - tblock.TimeConstant);
bits = 8;
stereo = tblock.VoiceMode;
if (stereo) speed >>=1;
lastblocktype = 8;
}
break;
case 9:
{
blockT9 tblock;
read(thefd, (char*)&tblock, sizeof(tblock));
tblock.SamplesPerSec = le32_to_cpu(tblock.SamplesPerSec);
tblock.Format = le16_to_cpu(tblock.Format);
if(tblock.Format != 0 && tblock.Format != 4)
Die("Non PCM VOC block");
speed = tblock.SamplesPerSec;
bits = tblock.BitsPerSample;
stereo = tblock.Channels - 1;
bytecount = DATALEN(ccblock) - 12;
diskread(thefd, bytecount,0, NULL, 0, speed, bits, stereo);
lastblocktype = 9;
}
break;
case 0:
#ifdef DEBUG
fprintf(stderr, "Terminating\n");
#endif
diskread(thefd, -1,0, NULL, 1, speed, bits, stereo);
quit = 1;
break;
case 6:
inloop = 1;
read(thefd, (char*)&loop_times, 2);
loop_times++;
#ifdef DEBUG
fprintf(stderr, "Beginning loop %d\n", loop_times);
#endif
loop_pos = lseek(thefd, 0, SEEK_CUR);
if(loop_pos == -1)
{
fprintf(stderr, "Input not seekable - loop will only be played once\n");
loop_times = 1;
}
lastblocktype = ccblock.BlockID;
break;
case 7:
if(!inloop)
{
fprintf(stderr, "Loop end with no loop start - ignoring\n");
break;
}
if(loop_times != 0xFFFF) --loop_times;
if(loop_times)
{
#ifdef DEBUG
fprintf(stderr, "Looping...\n");
#endif
lseek(thefd, loop_pos, SEEK_SET);
}
else
inloop = 0;
lastblocktype = ccblock.BlockID;
break;
default:
{
int rd = 0, trgt = BUFSIZ;
char junkbuf[BUFSIZ];
fprintf(stderr, "Ignored\n");
bytecount = DATALEN(ccblock);
while(rd < bytecount)
{
if (rd + trgt > bytecount)
trgt = bytecount - rd;
count = read(thefd, junkbuf, trgt);
if (count < 0) ErrDie("read");
if (count == 0) Die("premature eof in input");
rd += count;
}
lastblocktype = ccblock.BlockID;
}
break;
}
}
}
/* ----- BELOW: ADDED BY CS ------------------------------------------------ */
void init_curses(void)
{
initscr();
keypad(stdscr, TRUE);
nonl();
cbreak();
noecho();
refresh(); /* Xterms erase everything after the first refresh,
so refresh one time before anything is added. */
return;
}
void finish_curses(int sig)
{
endwin();
exit(0);
}
|