added extern c to most files
This commit is contained in:
parent
b024e8d5c1
commit
5badf331fd
7 changed files with 40 additions and 6 deletions
|
|
@ -3,6 +3,10 @@
|
|||
|
||||
#include <stdint.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @brief a type that holds an array of data and its size
|
||||
*/
|
||||
|
|
@ -11,4 +15,8 @@ typedef struct ARC_Array {
|
|||
void *data;
|
||||
} ARC_Array;
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif //ARC_STD_ARRAY_H_
|
||||
Loading…
Add table
Add a link
Reference in a new issue