Coconut Framework  beta
CNArrayElement.h
Go to the documentation of this file.
1 
8 #ifndef CNARRAYELEMENT_H
9 #define CNARRAYELEMENT_H
10 
11 #include "CNForwarders.h"
12 #include "CNType.h"
13 #include <string.h>
14 
16 #define CNArrayElementSize 16
17 
18 #define CNArrayElementWidth 4
19 
20 #define CNArrayElementMask ((unsigned int) 0xf)
21 
26 } ;
27 
32 static inline void
34 {
35  unsigned int i ;
36  for(i=0 ; i<CNArrayElementSize ; i++){
37  dst->array[i] = NULL ;
38  }
39 }
40 
41 #endif /* CNARRAYELEMENT_H */
#define CNArrayElementSize
Definition: CNArrayElement.h:16
Forward declaration of data types.
static void CNInitArrayElement(struct CNArrayElement *dst)
Initialize CNArrayElement object.
Definition: CNArrayElement.h:33
void * array[CNArrayElementSize]
Definition: CNArrayElement.h:25
Define primitive data types.
Definition: CNArrayElement.h:23