|
Tcl/crtinterp(3) -- create and delete Tcl command interpreters
|
Tcl_Interp *interp (in) Token for interpreter to be destroyed. |
Tk/crtitemtype(3) -- define new kind of canvas item
|
Tk_ItemType *typePtr (in) Structure that defines the new type of canvas item. |
Tk/crtmainwin(3) -- create or delete window
|
Tcl_Interp *interp (out) Tcl interpreter to use for error reporting. If no error occurs, then *interp isn't modified. For Tk_CreateMainWindow, this interpreter is associated permanently with the created window, and Tk-related commands are bound into the interpreter. char *screenName (in) String name of screen on which to create window. Has the form displayName.screenNum, where displayName is the name of a display and screenNum is a screen number. If the dot and screenNum are omitted, the screen... |
Tcl/crtmathfnc(3) -- Define a new math function for expressions
|
Tcl_Interp *interp (in) Interpreter in which new function will be defined. char *name (in) Name for new function. int numArgs (in) Number of arguments to new function; also gives size of argTypes array. Tcl_ValueType *argTypes (in) Points to an array giving the permissible types for each argument to function. Tcl_MathProc *proc (in) Procedure that implements the function. ClientData clientData (in) Arbitrary one-word value to pass to proc when it is invoked.... |
Tk/crtphimgfmt(3) -- define new file format for photo images
|
Tk_PhotoImageFormat *formatPtr (in) Structure that defines the new file format. |
Tcl/crtpipelin(3) -- create one or more child processes, with I/O redirection
|
Tcl_Interp *interp (in) Interpreter to use for error reporting. int argc (in) Number of strings in argv array. char **argv (in) Array of strings describing command(s) and I/O redirection. Argv[argc] must be NULL. int **pidArrayPtr (out) The value at *pidArrayPtr is modified to hold a pointer to an array of process identifiers. The array is dynamically allocated and must be freed by the caller. int *inPipePtr (out) If this argument is NULL then standard input for the first command in the pipeline... |
Tk/crtselhdlr(3) -- arrange to handle requests for a selection
|
Tk_Window tkwin (in) Window for which proc will provide selection information. Atom selection (in) The name of the selection for | which proc will provide | selection information. Atom target (in) Form in which proc can provide the selection (e.g. STRING or FILE_NAME). Corresponds to type arguments in selection commands. Tk_SelectionProc *proc (in) Procedure to invoke whenever the selection is owned by tkwin and the selection contents are requested in the format given by target. ClientData clien... |
Tcl/crttrace(3) -- arrange for command execution to be traced
|
Tcl_Interp *interp (in) Interpreter containing command to be traced or untraced. int level (in) Only commands at or below this nesting level will be traced. 1 means top-level commands only, 2 means top-level commands or those that are invoked as immediate consequences of executing top-level commands (procedure bodies, bracketed commands, etc.) and so on. Tcl_CmdTraceProc *proc (in) Procedure to call for each command that's executed. See below for details on the calling sequence. ClientData clie... |
standard/crv(3) -- draws a curve
|
points expects an array containing the four points that define the curve. The routine expects 3-D points (x, y, and z coordinates for each point). |
standard/crvn(3) -- draws a series of curve segments
|
geom expects a matrix of 3-D points. n expects the number of points in the matrix referenced by geom. |
f90/cry2mips(3) -- Converts Fortran data types between Cray Fortran data types and MIPS IEEE Fortran data types
|
UNICOS systems (except CRAY T90 systems that support IEEE arithmetic) IRIX systems |
crypt(3c) -- generate hashing encryption
|
crypt is the password encryption function. It is based on a one way hashing encryption algorithm with variations intended (among other things) to frustrate use of hardware implementations of a key search. Key is the input string to encrypt, for instance, a user's typed password. Salt is a two-character string chosen from the set [a-zA-Z0- 9./]; this string is used to perturb the hashing algorithm in one of 4096 different ways, after which the password is used as the key to encrypt repeatedly a ... |
crypt(3x) -- password and file encryption functions
|
des_crypt is the password encryption function. It is based on a one way hashing encryption algorithm with variations intended (among other things) to frustrate use of hardware implementations of a key search. Key is a user's typed password. Salt is a two-character string chosen from the set [a-zA-Z0-9./]; this string is used to perturb the hashing algorithm in one of 4096 different ways, after which the password is used as the key to encrypt repeatedly a constant string. The returned value poin... |