Lines Matching defs:int

123      to guaranteed 32 bits integers (`int' is enough for GNU, while
124 ANSI only guarantees `long int' to have a length of 32 bits).
125 - The many usages of type `int' are differentiated by using `Char',
258 typedef int EnvInt;
261 typedef int IntArg;
264 typedef unsigned int ColorArg;
288 int data;
291 Char(const int c) : data(c) {}
293 bool operator==(int c) const { return (data == c) ? true : false; }
297 bool operator!=(int c) const { return !(*this == c); }
299 operator int() const { return (int) data; }
343 int current_lineno = 0; // current line number of printout
364 int npages = 0;
399 // variable, even number of int args
409 inline bool odd(const int); // test if integer is odd
755 while ((int) c != EOF) {
756 if ((int) c == '\n') {
759 if ((int) c == '+')
789 if ((int) c == '-') {
793 if (!isdigit((int) c))
795 while (isdigit((int) c)) {
803 long int number = strtol(s, 0, 10);
840 if (isdigit((int) c1)) {
847 while (isdigit((int) c)) {
854 long int x = strtol(s, 0, 10);
866 switch((int) c) {
943 switch ((int) c) {
971 switch ((int) c) {
996 odd(const int n)
1086 pr->draw((int) subcmd, (IntArg *)args->get_data(), n, current_env);
1127 switch((int) c) {
1250 int ch = (int) c;
1275 switch((int) subcmd) {
1303 error("invalid color scheme `%1'", (int) subcmd);
1322 switch((int) subcmd) {
1597 if ((int) command == EOF)
1599 if ((int) command != 'x')
1621 if ((int) command != 'x')
1658 switch ((int) command) {
1686 if (!isdigit((int) c)) {
1694 long int x = strtol(s, 0, 10);
1700 if ((int) c == '\n' || (int) c == EOF)
1759 case 'N': // N: print char with given int code