ports.h 380 B

12345678910111213141516171819202122
  1. #ifndef AVM_PORTS_H
  2. #define AVM_PORTS_H 1
  3. #include <avm/common.h>
  4. #include <avm/lists.h>
  5. #ifdef __cplusplus
  6. extern "C"
  7. {
  8. #endif
  9. extern port avm_newport (counter errors, port parent, int predicating);
  10. extern void avm_sever (port appendage);
  11. extern void avm_initialize_ports ();
  12. extern void avm_count_ports ();
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif /* !AVM_PORTS_H */