summaryrefslogtreecommitdiffstats
path: root/generic/tclTomMathDecls.h
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-02-05 10:03:23 (GMT)
committernijtmans <nijtmans>2010-02-05 10:03:23 (GMT)
commit3e2c1215a7115e506d67819f0831da51f8aa201a (patch)
tree91a0d32c754b6aff65afda82a01486cdc41c00d3 /generic/tclTomMathDecls.h
parent280e93549c0502a223353a6814bb3548fcd9a71b (diff)
downloadtcl-3e2c1215a7115e506d67819f0831da51f8aa201a.zip
tcl-3e2c1215a7115e506d67819f0831da51f8aa201a.tar.gz
tcl-3e2c1215a7115e506d67819f0831da51f8aa201a.tar.bz2
Follow-up to [2010-01-29] commit:
prevent space within stub table function parameters if the parameter type is a pointer. Minor formatting, and VOID -> void. Change signature of TclNRInterpProcCore, and TclOONewProc(Instance|)MethodEx, indicating that errorProc is a function pointer tclVar.c: fixed two gcc warnings
Diffstat (limited to 'generic/tclTomMathDecls.h')
-rw-r--r--generic/tclTomMathDecls.h136
1 files changed, 68 insertions, 68 deletions
diff --git a/generic/tclTomMathDecls.h b/generic/tclTomMathDecls.h
index 76f6b20..ee57f96 100644
--- a/generic/tclTomMathDecls.h
+++ b/generic/tclTomMathDecls.h
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclTomMathDecls.h,v 1.10 2010/01/29 16:17:20 nijtmans Exp $
+ * RCS: @(#) $Id: tclTomMathDecls.h,v 1.11 2010/02/05 10:03:23 nijtmans Exp $
*/
#ifndef _TCLTOMMATHDECLS
@@ -212,7 +212,7 @@ EXTERN int TclBN_mp_div(mp_int *a, mp_int *b, mp_int *q,
#define TclBN_mp_div_d_TCL_DECLARED
/* 14 */
EXTERN int TclBN_mp_div_d(mp_int *a, mp_digit b, mp_int *q,
- mp_digit*r);
+ mp_digit *r);
#endif
#ifndef TclBN_mp_div_2_TCL_DECLARED
#define TclBN_mp_div_2_TCL_DECLARED
@@ -228,7 +228,7 @@ EXTERN int TclBN_mp_div_2d(mp_int *a, int b, mp_int *q,
#ifndef TclBN_mp_div_3_TCL_DECLARED
#define TclBN_mp_div_3_TCL_DECLARED
/* 17 */
-EXTERN int TclBN_mp_div_3(mp_int *a, mp_int *q, mp_digit*r);
+EXTERN int TclBN_mp_div_3(mp_int *a, mp_int *q, mp_digit *r);
#endif
#ifndef TclBN_mp_exch_TCL_DECLARED
#define TclBN_mp_exch_TCL_DECLARED
@@ -318,12 +318,12 @@ EXTERN int TclBN_mp_or(mp_int *a, mp_int *b, mp_int *c);
#ifndef TclBN_mp_radix_size_TCL_DECLARED
#define TclBN_mp_radix_size_TCL_DECLARED
/* 35 */
-EXTERN int TclBN_mp_radix_size(mp_int *a, int radix, int*size);
+EXTERN int TclBN_mp_radix_size(mp_int *a, int radix, int *size);
#endif
#ifndef TclBN_mp_read_radix_TCL_DECLARED
#define TclBN_mp_read_radix_TCL_DECLARED
/* 36 */
-EXTERN int TclBN_mp_read_radix(mp_int *a, const char*str,
+EXTERN int TclBN_mp_read_radix(mp_int *a, const char *str,
int radix);
#endif
#ifndef TclBN_mp_rshd_TCL_DECLARED
@@ -364,18 +364,18 @@ EXTERN int TclBN_mp_sub_d(mp_int *a, mp_digit b, mp_int *c);
#ifndef TclBN_mp_to_unsigned_bin_TCL_DECLARED
#define TclBN_mp_to_unsigned_bin_TCL_DECLARED
/* 44 */
-EXTERN int TclBN_mp_to_unsigned_bin(mp_int *a, unsigned char*b);
+EXTERN int TclBN_mp_to_unsigned_bin(mp_int *a, unsigned char *b);
#endif
#ifndef TclBN_mp_to_unsigned_bin_n_TCL_DECLARED
#define TclBN_mp_to_unsigned_bin_n_TCL_DECLARED
/* 45 */
EXTERN int TclBN_mp_to_unsigned_bin_n(mp_int *a,
- unsigned char*b, unsigned long*outlen);
+ unsigned char *b, unsigned long *outlen);
#endif
#ifndef TclBN_mp_toradix_n_TCL_DECLARED
#define TclBN_mp_toradix_n_TCL_DECLARED
/* 46 */
-EXTERN int TclBN_mp_toradix_n(mp_int *a, char*str, int radix,
+EXTERN int TclBN_mp_toradix_n(mp_int *a, char *str, int radix,
int maxlen);
#endif
#ifndef TclBN_mp_unsigned_bin_size_TCL_DECLARED
@@ -396,7 +396,7 @@ EXTERN void TclBN_mp_zero(mp_int *a);
#ifndef TclBN_reverse_TCL_DECLARED
#define TclBN_reverse_TCL_DECLARED
/* 50 */
-EXTERN void TclBN_reverse(unsigned char*s, int len);
+EXTERN void TclBN_reverse(unsigned char *s, int len);
#endif
#ifndef TclBN_fast_s_mp_mul_digs_TCL_DECLARED
#define TclBN_fast_s_mp_mul_digs_TCL_DECLARED
@@ -458,65 +458,65 @@ typedef struct TclTomMathStubs {
int (*tclBN_epoch) (void); /* 0 */
int (*tclBN_revision) (void); /* 1 */
- int (*tclBN_mp_add) (mp_int * a, mp_int * b, mp_int * c); /* 2 */
- int (*tclBN_mp_add_d) (mp_int * a, mp_digit b, mp_int * c); /* 3 */
- int (*tclBN_mp_and) (mp_int * a, mp_int * b, mp_int * c); /* 4 */
- void (*tclBN_mp_clamp) (mp_int * a); /* 5 */
- void (*tclBN_mp_clear) (mp_int * a); /* 6 */
- void (*tclBN_mp_clear_multi) (mp_int * a, ...); /* 7 */
- int (*tclBN_mp_cmp) (mp_int * a, mp_int * b); /* 8 */
- int (*tclBN_mp_cmp_d) (mp_int * a, mp_digit b); /* 9 */
- int (*tclBN_mp_cmp_mag) (mp_int * a, mp_int * b); /* 10 */
- int (*tclBN_mp_copy) (mp_int * a, mp_int * b); /* 11 */
- int (*tclBN_mp_count_bits) (mp_int * a); /* 12 */
- int (*tclBN_mp_div) (mp_int * a, mp_int * b, mp_int * q, mp_int * r); /* 13 */
- int (*tclBN_mp_div_d) (mp_int * a, mp_digit b, mp_int * q, mp_digit* r); /* 14 */
- int (*tclBN_mp_div_2) (mp_int * a, mp_int * q); /* 15 */
- int (*tclBN_mp_div_2d) (mp_int * a, int b, mp_int * q, mp_int * r); /* 16 */
- int (*tclBN_mp_div_3) (mp_int * a, mp_int * q, mp_digit* r); /* 17 */
- void (*tclBN_mp_exch) (mp_int * a, mp_int * b); /* 18 */
- int (*tclBN_mp_expt_d) (mp_int * a, mp_digit b, mp_int * c); /* 19 */
- int (*tclBN_mp_grow) (mp_int * a, int size); /* 20 */
- int (*tclBN_mp_init) (mp_int * a); /* 21 */
- int (*tclBN_mp_init_copy) (mp_int * a, mp_int * b); /* 22 */
- int (*tclBN_mp_init_multi) (mp_int * a, ...); /* 23 */
- int (*tclBN_mp_init_set) (mp_int * a, mp_digit b); /* 24 */
- int (*tclBN_mp_init_size) (mp_int * a, int size); /* 25 */
- int (*tclBN_mp_lshd) (mp_int * a, int shift); /* 26 */
- int (*tclBN_mp_mod) (mp_int * a, mp_int * b, mp_int * r); /* 27 */
- int (*tclBN_mp_mod_2d) (mp_int * a, int b, mp_int * r); /* 28 */
- int (*tclBN_mp_mul) (mp_int * a, mp_int * b, mp_int * p); /* 29 */
- int (*tclBN_mp_mul_d) (mp_int * a, mp_digit b, mp_int * p); /* 30 */
- int (*tclBN_mp_mul_2) (mp_int * a, mp_int * p); /* 31 */
- int (*tclBN_mp_mul_2d) (mp_int * a, int d, mp_int * p); /* 32 */
- int (*tclBN_mp_neg) (mp_int * a, mp_int * b); /* 33 */
- int (*tclBN_mp_or) (mp_int * a, mp_int * b, mp_int * c); /* 34 */
- int (*tclBN_mp_radix_size) (mp_int * a, int radix, int* size); /* 35 */
- int (*tclBN_mp_read_radix) (mp_int * a, const char* str, int radix); /* 36 */
- void (*tclBN_mp_rshd) (mp_int * a, int shift); /* 37 */
- int (*tclBN_mp_shrink) (mp_int * a); /* 38 */
- void (*tclBN_mp_set) (mp_int * a, mp_digit b); /* 39 */
- int (*tclBN_mp_sqr) (mp_int * a, mp_int * b); /* 40 */
- int (*tclBN_mp_sqrt) (mp_int * a, mp_int * b); /* 41 */
- int (*tclBN_mp_sub) (mp_int * a, mp_int * b, mp_int * c); /* 42 */
- int (*tclBN_mp_sub_d) (mp_int * a, mp_digit b, mp_int * c); /* 43 */
- int (*tclBN_mp_to_unsigned_bin) (mp_int * a, unsigned char* b); /* 44 */
- int (*tclBN_mp_to_unsigned_bin_n) (mp_int * a, unsigned char* b, unsigned long* outlen); /* 45 */
- int (*tclBN_mp_toradix_n) (mp_int * a, char* str, int radix, int maxlen); /* 46 */
- int (*tclBN_mp_unsigned_bin_size) (mp_int * a); /* 47 */
- int (*tclBN_mp_xor) (mp_int * a, mp_int * b, mp_int * c); /* 48 */
- void (*tclBN_mp_zero) (mp_int * a); /* 49 */
- void (*tclBN_reverse) (unsigned char* s, int len); /* 50 */
- int (*tclBN_fast_s_mp_mul_digs) (mp_int * a, mp_int * b, mp_int * c, int digs); /* 51 */
- int (*tclBN_fast_s_mp_sqr) (mp_int * a, mp_int * b); /* 52 */
- int (*tclBN_mp_karatsuba_mul) (mp_int * a, mp_int * b, mp_int * c); /* 53 */
- int (*tclBN_mp_karatsuba_sqr) (mp_int * a, mp_int * b); /* 54 */
- int (*tclBN_mp_toom_mul) (mp_int * a, mp_int * b, mp_int * c); /* 55 */
- int (*tclBN_mp_toom_sqr) (mp_int * a, mp_int * b); /* 56 */
- int (*tclBN_s_mp_add) (mp_int * a, mp_int * b, mp_int * c); /* 57 */
- int (*tclBN_s_mp_mul_digs) (mp_int * a, mp_int * b, mp_int * c, int digs); /* 58 */
- int (*tclBN_s_mp_sqr) (mp_int * a, mp_int * b); /* 59 */
- int (*tclBN_s_mp_sub) (mp_int * a, mp_int * b, mp_int * c); /* 60 */
+ int (*tclBN_mp_add) (mp_int *a, mp_int *b, mp_int *c); /* 2 */
+ int (*tclBN_mp_add_d) (mp_int *a, mp_digit b, mp_int *c); /* 3 */
+ int (*tclBN_mp_and) (mp_int *a, mp_int *b, mp_int *c); /* 4 */
+ void (*tclBN_mp_clamp) (mp_int *a); /* 5 */
+ void (*tclBN_mp_clear) (mp_int *a); /* 6 */
+ void (*tclBN_mp_clear_multi) (mp_int *a, ...); /* 7 */
+ int (*tclBN_mp_cmp) (mp_int *a, mp_int *b); /* 8 */
+ int (*tclBN_mp_cmp_d) (mp_int *a, mp_digit b); /* 9 */
+ int (*tclBN_mp_cmp_mag) (mp_int *a, mp_int *b); /* 10 */
+ int (*tclBN_mp_copy) (mp_int *a, mp_int *b); /* 11 */
+ int (*tclBN_mp_count_bits) (mp_int *a); /* 12 */
+ int (*tclBN_mp_div) (mp_int *a, mp_int *b, mp_int *q, mp_int *r); /* 13 */
+ int (*tclBN_mp_div_d) (mp_int *a, mp_digit b, mp_int *q, mp_digit *r); /* 14 */
+ int (*tclBN_mp_div_2) (mp_int *a, mp_int *q); /* 15 */
+ int (*tclBN_mp_div_2d) (mp_int *a, int b, mp_int *q, mp_int *r); /* 16 */
+ int (*tclBN_mp_div_3) (mp_int *a, mp_int *q, mp_digit *r); /* 17 */
+ void (*tclBN_mp_exch) (mp_int *a, mp_int *b); /* 18 */
+ int (*tclBN_mp_expt_d) (mp_int *a, mp_digit b, mp_int *c); /* 19 */
+ int (*tclBN_mp_grow) (mp_int *a, int size); /* 20 */
+ int (*tclBN_mp_init) (mp_int *a); /* 21 */
+ int (*tclBN_mp_init_copy) (mp_int *a, mp_int *b); /* 22 */
+ int (*tclBN_mp_init_multi) (mp_int *a, ...); /* 23 */
+ int (*tclBN_mp_init_set) (mp_int *a, mp_digit b); /* 24 */
+ int (*tclBN_mp_init_size) (mp_int *a, int size); /* 25 */
+ int (*tclBN_mp_lshd) (mp_int *a, int shift); /* 26 */
+ int (*tclBN_mp_mod) (mp_int *a, mp_int *b, mp_int *r); /* 27 */
+ int (*tclBN_mp_mod_2d) (mp_int *a, int b, mp_int *r); /* 28 */
+ int (*tclBN_mp_mul) (mp_int *a, mp_int *b, mp_int *p); /* 29 */
+ int (*tclBN_mp_mul_d) (mp_int *a, mp_digit b, mp_int *p); /* 30 */
+ int (*tclBN_mp_mul_2) (mp_int *a, mp_int *p); /* 31 */
+ int (*tclBN_mp_mul_2d) (mp_int *a, int d, mp_int *p); /* 32 */
+ int (*tclBN_mp_neg) (mp_int *a, mp_int *b); /* 33 */
+ int (*tclBN_mp_or) (mp_int *a, mp_int *b, mp_int *c); /* 34 */
+ int (*tclBN_mp_radix_size) (mp_int *a, int radix, int *size); /* 35 */
+ int (*tclBN_mp_read_radix) (mp_int *a, const char *str, int radix); /* 36 */
+ void (*tclBN_mp_rshd) (mp_int *a, int shift); /* 37 */
+ int (*tclBN_mp_shrink) (mp_int *a); /* 38 */
+ void (*tclBN_mp_set) (mp_int *a, mp_digit b); /* 39 */
+ int (*tclBN_mp_sqr) (mp_int *a, mp_int *b); /* 40 */
+ int (*tclBN_mp_sqrt) (mp_int *a, mp_int *b); /* 41 */
+ int (*tclBN_mp_sub) (mp_int *a, mp_int *b, mp_int *c); /* 42 */
+ int (*tclBN_mp_sub_d) (mp_int *a, mp_digit b, mp_int *c); /* 43 */
+ int (*tclBN_mp_to_unsigned_bin) (mp_int *a, unsigned char *b); /* 44 */
+ int (*tclBN_mp_to_unsigned_bin_n) (mp_int *a, unsigned char *b, unsigned long *outlen); /* 45 */
+ int (*tclBN_mp_toradix_n) (mp_int *a, char *str, int radix, int maxlen); /* 46 */
+ int (*tclBN_mp_unsigned_bin_size) (mp_int *a); /* 47 */
+ int (*tclBN_mp_xor) (mp_int *a, mp_int *b, mp_int *c); /* 48 */
+ void (*tclBN_mp_zero) (mp_int *a); /* 49 */
+ void (*tclBN_reverse) (unsigned char *s, int len); /* 50 */
+ int (*tclBN_fast_s_mp_mul_digs) (mp_int *a, mp_int *b, mp_int *c, int digs); /* 51 */
+ int (*tclBN_fast_s_mp_sqr) (mp_int *a, mp_int *b); /* 52 */
+ int (*tclBN_mp_karatsuba_mul) (mp_int *a, mp_int *b, mp_int *c); /* 53 */
+ int (*tclBN_mp_karatsuba_sqr) (mp_int *a, mp_int *b); /* 54 */
+ int (*tclBN_mp_toom_mul) (mp_int *a, mp_int *b, mp_int *c); /* 55 */
+ int (*tclBN_mp_toom_sqr) (mp_int *a, mp_int *b); /* 56 */
+ int (*tclBN_s_mp_add) (mp_int *a, mp_int *b, mp_int *c); /* 57 */
+ int (*tclBN_s_mp_mul_digs) (mp_int *a, mp_int *b, mp_int *c, int digs); /* 58 */
+ int (*tclBN_s_mp_sqr) (mp_int *a, mp_int *b); /* 59 */
+ int (*tclBN_s_mp_sub) (mp_int *a, mp_int *b, mp_int *c); /* 60 */
} TclTomMathStubs;
#if defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS)