Subversion Repositories Kolibri OS

Rev

Rev 8535 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8535 Rev 8578
Line 6... Line 6...
6
void bitwise_init(TP)
6
void bitwise_init(TP)
7
{
7
{
8
    tp_obj bit_mod = tp_dict(tp);
8
    tp_obj bit_mod = tp_dict(tp);
Line 9... Line 9...
9
 
9
 
-
 
10
    EXPORT(bit_mod, "add" , _add);
Line 10... Line 11...
10
    EXPORT(bit_mod, "add" , _add);
11
    EXPORT(bit_mod, "mul" , _mul);
11
 
12
 
12
    tp_set(tp, bit_mod, tp_string("__doc__"), tp_string("Bitwise operations for large numbers"));
13
    tp_set(tp, bit_mod, tp_string("__doc__"), tp_string("Bitwise operations for large numbers"));