Skip to content

eldyj/rln.h

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rln (readline)

readline library for unix
depends on cstr.h library

binds

  • left = move left
  • right = move right
  • home (ctrl+a) = to start
  • end (ctrl+e), ctrl+d = to end
  • ctrl+left = previous word
  • ctrl+right = next word
  • backspace (ctrl+h) = remove before cursor
  • delete = remove after cursor
  • ctrl+f = remove first character
  • ctrl+g = remove last character
  • ctrl+k = clear before cursor
  • ctrl+l = clear after cursor
  • ctrl+o = clear all input
  • ctrl+r = swap current char with previous
  • ctrl+t = swap current char with next
  • ctrl+p = non-printable mode toggle

usage

#include <rln.h>
//...
char *str = rln("enter something: ");
//...
free(str);

examples

here

Releases

No releases published

Packages

No packages published