File: rdln.h

package info (click to toggle)
rscheme 0.7.2-1.1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 10,672 kB
  • ctags: 12,430
  • sloc: lisp: 37,104; ansic: 29,763; cpp: 2,630; sh: 1,677; makefile: 568; yacc: 202; lex: 175; perl: 33
file content (25 lines) | stat: -rw-r--r-- 841 bytes parent folder | download | duplicates (4)
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
/*-----------------------------------------------------------------*-C-*---
 * File:    handc/runtime/rdln.h
 *
 *          Copyright (C)1997 Donovan Kolbly <d.kolbly@rscheme.org>
 *          as part of the RScheme project, licensed for free use.
 *          See <http://www.rscheme.org/> for the latest information.
 *
 * File version:     1.3
 * File mod date:    1997.11.29 23:10:50
 * System build:     v0.7.2, 97.12.21
 *
 * Purpose:          define the interface to the rdln subsystem
 *------------------------------------------------------------------------*/

#ifndef _H_RSEDITINP_RDLN
#define _H_RSEDITINP_RDLN

#include <rscheme/obj.h>

rs_bool rdln_isa_tty( void );
rs_bool rdln_enabled( void );
void rdln_add_history( obj str );
obj read_console_line( obj completions_list, const char *prompt );

#endif /* _H_RSEDITINP_RDLN */