How to change the object kindThe empty objectHow to select the object kind

How to select the object kind

To get the information about the kind of an object, you have the routine s_o_k(), look at the following part of the pseudostandard routine print:
...
INT print(a) OP a;
...
switch(s_o_k(a)) {
	case INTEGER: return(print_integer(a));
	...
	}
...
The complete description of this selection of the object's kind is:
harald.fripertinger@kfunigraz.ac.at,
last changed: November 19, 2001

How to change the object kindThe empty objectHow to select the object kind