Lines Matching refs:nc
603 int len, c, nc; in xlu__cfgl_dequote() local
621 nc= *p++; in xlu__cfgl_dequote()
622 if (nc=='"' || nc=='\'' || nc=='\\') { in xlu__cfgl_dequote()
623 *q++= nc; in xlu__cfgl_dequote()
624 } else if (nc=='a') { *q++= '\007'; in xlu__cfgl_dequote()
625 } else if (nc=='b') { *q++= '\010'; in xlu__cfgl_dequote()
626 } else if (nc=='f') { *q++= '\014'; in xlu__cfgl_dequote()
627 } else if (nc=='n') { *q++= '\n'; in xlu__cfgl_dequote()
628 } else if (nc=='r') { *q++= '\r'; in xlu__cfgl_dequote()
629 } else if (nc=='t') { *q++= '\t'; in xlu__cfgl_dequote()
630 } else if (nc=='v') { *q++= '\013'; in xlu__cfgl_dequote()
631 } else if (nc=='x') { in xlu__cfgl_dequote()
652 } else if (nc>='0' && nc<='7') { in xlu__cfgl_dequote()