* PrintProtos * * Print the list of prototypes in this class type. **********************************************************************/
| 271 | * Print the list of prototypes in this class type. |
| 272 | **********************************************************************/ |
| 273 | void PrintProtos(CLASS_TYPE Class) { |
| 274 | inT16 Pid; |
| 275 | |
| 276 | for (Pid = 0; Pid < Class->NumProtos; Pid++) { |
| 277 | cprintf ("Proto %d:\t", Pid); |
| 278 | PrintProto (ProtoIn (Class, Pid)); |
| 279 | cprintf ("\t"); |
| 280 | PrintProtoLine (ProtoIn (Class, Pid)); |
| 281 | new_line(); |
| 282 | } |
| 283 | } |