rtabs.c
contents ::
  address.c
  atquick_sort.c
  bits.c
  countspace.c
  ctof.c
  hextoint.c
  hist.c
  indexof.c
  itob.c
  linkage.c
  lzw.c
  maxval.c
  merge.c
  merge_sort.c
  peof.c
  pointer.c
  quick2.c
  quick.c
  quick_sort.c
  reverse.c
  rftoc.c
  rmultiblank.c
  rtabs.c
  squeeze.c
  structoo.c
  syscall.c
  tempfunc.c
  tfc.c
  word.c

#include <stdio.h>

main(){
  int c;
  while((c=getchar())!=EOF){
    if(c=='\n')
      printf("\\n");
    if(c=='\b')
      printf("\\b");
    if(c=='\\')
      printf("\\\\");
    if(c!='\n'||c!='\b'||c!='\\')
      printf("%c", c);
  }
}

James Little