mirror of
https://github.com/xcat2/xNBA.git
synced 2025-01-18 21:43:14 +00:00
Skeletal (non-echoing) version of readline()
This commit is contained in:
parent
19e1d674d3
commit
b3c535e550
68
src/hci/readline.c
Normal file
68
src/hci/readline.c
Normal file
@ -0,0 +1,68 @@
|
||||
/*
|
||||
* Copyright (C) 2006 Michael Brown <mbrown@fensystems.co.uk>.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License as
|
||||
* published by the Free Software Foundation; either version 2 of the
|
||||
* License, or any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include <malloc.h>
|
||||
#include <console.h>
|
||||
#include <gpxe/editstring.h>
|
||||
#include <readline/readline.h>
|
||||
|
||||
/** @file
|
||||
*
|
||||
* Minimal readline
|
||||
*
|
||||
*/
|
||||
|
||||
#define READLINE_MAX 256
|
||||
|
||||
/**
|
||||
* Read line from console
|
||||
*
|
||||
* @v prompt Prompt string
|
||||
* @ret line Line read from console (excluding terminating newline)
|
||||
*
|
||||
* The returned line is allocated with malloc(); the caller must
|
||||
* eventually call free() to release the storage.
|
||||
*/
|
||||
char * readline ( const char *prompt ) {
|
||||
char buf[READLINE_MAX];
|
||||
struct edit_string string = {
|
||||
.buf = buf,
|
||||
.len = sizeof ( buf ),
|
||||
.cursor = 0,
|
||||
};
|
||||
int key;
|
||||
|
||||
if ( prompt )
|
||||
printf ( "%s", prompt );
|
||||
|
||||
buf[0] = '\0';
|
||||
while ( 1 ) {
|
||||
key = edit_string ( &string, getchar() );
|
||||
switch ( key ) {
|
||||
case 0x0d: /* Carriage return */
|
||||
case 0x0a: /* Line feed */
|
||||
return ( strdup ( buf ) );
|
||||
case 0x03: /* Ctrl-C */
|
||||
return NULL;
|
||||
default:
|
||||
/* Do nothing */
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
12
src/include/readline/readline.h
Normal file
12
src/include/readline/readline.h
Normal file
@ -0,0 +1,12 @@
|
||||
#ifndef _READLINE_H
|
||||
#define _READLINE_H
|
||||
|
||||
/** @file
|
||||
*
|
||||
* Minmal readline
|
||||
*
|
||||
*/
|
||||
|
||||
extern char * readline ( const char *prompt );
|
||||
|
||||
#endif /* _READLINE_H */
|
Loading…
x
Reference in New Issue
Block a user