opcua_memory.h 320 B

1234567891011121314151617181920212223242526
  1. /*
  2. * opcua_memory.h
  3. *
  4. * Created on: Jan 30, 2014
  5. * Author: opcua
  6. */
  7. #ifndef OPCUA_MEMORY_H_
  8. #define OPCUA_MEMORY_H_
  9. #include <stdint.h>
  10. #include <stdlib.h>
  11. /**
  12. *
  13. * @param size
  14. */
  15. void* opcua_malloc(size_t size);
  16. /**
  17. *
  18. * @param pointer
  19. */
  20. void opcua_free(void* pointer);
  21. #endif /* OPCUA_MEMORY_H_ */