blob: f9938f308bd652de143c94678be6f5d5e14f0bc3 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001/***********************************************************
2Copyright 1991 by Stichting Mathematisch Centrum, Amsterdam, The
3Netherlands.
4
5 All Rights Reserved
6
7Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
9provided that the above copyright notice appear in all copies and that
10both that copyright notice and this permission notice appear in
11supporting documentation, and that the names of Stichting Mathematisch
12Centrum or CWI not be used in advertising or publicity pertaining to
13distribution of the software without specific, written prior permission.
14
15STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
16THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
18FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
21OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22
23******************************************************************/
24
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000025/* Integer object interface */
26
27/*
28123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
29
30intobject represents a (long) integer. This is an immutable object;
31an integer cannot change its value after creation.
32
33There are functions to create new integer objects, to test an object
34for integer-ness, and to get the integer value. The latter functions
35returns -1 and sets errno to EBADF if the object is not an intobject.
36None of the functions should be applied to nil objects.
37
38The type intobject is (unfortunately) exposed bere so we can declare
39TrueObject and FalseObject below; don't use this.
40*/
41
42typedef struct {
43 OB_HEAD
44 long ob_ival;
45} intobject;
46
47extern typeobject Inttype;
48
49#define is_intobject(op) ((op)->ob_type == &Inttype)
50
51extern object *newintobject PROTO((long));
52extern long getintvalue PROTO((object *));
53
54
55/*
56123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
57
58False and True are special intobjects used by Boolean expressions.
59All values of type Boolean must point to either of these; but in
60contexts where integers are required they are integers (valued 0 and 1).
61Hope these macros don't conflict with other people's.
62
63Don't forget to apply INCREF() when returning True or False!!!
64*/
65
66extern intobject FalseObject, TrueObject; /* Don't use these directly */
67
68#define False ((object *) &FalseObject)
69#define True ((object *) &TrueObject)
70
71/* Macro, trading safety for speed */
72#define GETINTVALUE(op) ((op)->ob_ival)