File: trfStubInit.c

package info (click to toggle)
tcltrf 2.1.4-dfsg3-2
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 9,652 kB
  • ctags: 9,400
  • sloc: ansic: 73,138; sh: 3,155; tcl: 1,343; makefile: 182; exp: 22
file content (42 lines) | stat: -rw-r--r-- 927 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* 
 * trfStubInit.c --
 *
 *	This file contains the initializers for the Trf stub vectors.
 *
 */

#include "transformInt.h"

/*
 * WARNING: The contents of this file is automatically generated by the
 * tools/genStubs.tcl script. Any modifications to the function declarations
 * below should be made in the generic/trf.decls script.
 */

/* !BEGIN!: Do not edit below this line. */

TrfIntStubs trfIntStubs = {
    TCL_STUB_MAGIC,
    NULL,
};

static TrfStubHooks trfStubHooks = {
    &trfIntStubs
};

TrfStubs trfStubs = {
    TCL_STUB_MAGIC,
    &trfStubHooks,
    Trf_IsInitialized, /* 0 */
    Trf_Register, /* 1 */
    Trf_ConverterOptions, /* 2 */
    Trf_LoadLibrary, /* 3 */
    Trf_LoadFailed, /* 4 */
    Trf_RegisterMessageDigest, /* 5 */
    Trf_XorBuffer, /* 6 */
    Trf_ShiftRegister, /* 7 */
    Trf_FlipRegisterLong, /* 8 */
    Trf_FlipRegisterShort, /* 9 */
};

/* !END!: Do not edit above this line. */