Backslash.3
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1989-1993 The Regents of the University of California.
  3. '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
  4. '"
  5. '" See the file "license.terms" for information on usage and redistribution
  6. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  7. '" 
  8. '" RCS: @(#) $Id: Backslash.3,v 1.4 2002/07/01 18:24:38 jenglish Exp $
  9. '" 
  10. .so man.macros
  11. .TH Tcl_Backslash 3 "8.1" Tcl "Tcl Library Procedures"
  12. .BS
  13. .SH NAME
  14. Tcl_Backslash - parse a backslash sequence
  15. .SH SYNOPSIS
  16. .nf
  17. fB#include <tcl.h>fR
  18. .sp
  19. char
  20. fBTcl_BackslashfR(fIsrc, countPtrfR)
  21. .SH ARGUMENTS
  22. .AS char *countPtr
  23. .AP char *src in
  24. Pointer to a string starting with a backslash.
  25. .AP int *countPtr out
  26. If fIcountPtrfR isn't NULL, fI*countPtrfR gets filled
  27. in with number of characters in the backslash sequence, including
  28. the backslash character.
  29. .BE
  30. .SH DESCRIPTION
  31. .PP
  32. .VS 8.1
  33. The use of fBTcl_BackslashfR is deprecated in favor of
  34. fBTcl_UtfBackslashfR.
  35. .PP
  36. This is a utility procedure provided for backwards compatibility with
  37. non-internationalized Tcl extensions.  It parses a backslash sequence and
  38. returns the low byte of the Unicode character corresponding to the sequence. 
  39. .VE
  40. fBTcl_BackslashfR modifies fI*countPtrfR to contain the number of
  41. characters in the backslash sequence.
  42. .PP
  43. See the Tcl manual entry for information on the valid backslash sequences.
  44. All of the sequences described in the Tcl manual entry are supported by
  45. fBTcl_BackslashfR.
  46. .VS 8.1 br
  47. .SH "SEE ALSO"
  48. Tcl(n), Tcl_UtfBackslash(3)
  49. .VE
  50. .SH KEYWORDS
  51. backslash, parse