home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / text / misc / cvt / scripts / cquote.cvt < prev    next >
Encoding:
Text File  |  1994-06-11  |  279 b   |  21 lines

  1. /*
  2.  *  CQUOTE.CVT
  3.  *
  4.  *  (c)Copyright 1993 by Tobias Ferber,  All Rights Reserved
  5.  */
  6.  
  7. // make a C string from a text
  8.  
  9. "\t" -> "\\t";
  10. "\v" -> "\\v";
  11. "\b" -> "\\b";
  12. "\r" -> "\\r";
  13. "\f" -> "\\f";
  14. "\a" -> "\\a";
  15. "\\" -> "\\\\";
  16. "\"" -> "\\\"";
  17.  
  18. "\n" -> "\\n\"\n\"";
  19.  
  20. $1B -> "\033";
  21.