Cleanup Commit
[tpg/acess2.git] / Modules / Interfaces / EDI / edi / helpers.h
1 #ifndef HELPERS_H
2
3 #define HELPERS_H
4
5 #include <edi.h>
6
7 // Locally Defined
8 bool edi_string_equal(edi_string_t x,edi_string_t y);
9 bool descends_from(data_pointer object_class,edi_string_t desired_class);
10 data_pointer get_actual_class(edi_string_t ancestor,int32_t num_objects,edi_object_metadata_t *objects);
11
12 // Local Copy/set
13 void *memcpyd(void *dest, void *src, unsigned int count);
14
15 // Implementation Defined Common functions
16 void *memcpy(void *dest, void *src, unsigned int count);
17 void *memmove(void *dest, void *src, unsigned int count);
18 void *realloc(void *ptr, unsigned int size);
19
20 #endif

UCC git Repository :: git.ucc.asn.au