]> git.ozlabs.org Git - ccan/blob - alignof/_info.c
First cut of hashing routines.
[ccan] / alignof / _info.c
1 #include <stdio.h>
2 #include <string.h>
3 #include "config.h"
4
5 /**
6  * alignof - ALIGNOF() macro to determine alignment of a type.
7  *
8  * Many platforms have requirements that certain types must be aligned
9  * to certain address boundaries, such as ints needing to be on 4-byte
10  * boundaries.  Attempting to access variables with incorrect
11  * alignment may cause performance loss or even program failure (eg. a
12  * bus signal).
13  *
14  * There are times which it's useful to be able to programatically
15  * access these requirements, such as for dynamic allocators.
16  *
17  * Example:
18  *      #include <stdio.h>
19  *      #include "alignof/alignoff.h"
20  *
21  *      int main(int argc, char *argv[])
22  *      {
23  *              char arr[sizeof(int)];
24  *
25  *              if ((unsigned long)arr % ALIGNOF(int)) {
26  *                      printf("arr %p CANNOT hold an int\n", arr);
27  *                      exit(1);
28  *              } else {
29  *                      printf("arr %p CAN hold an int\n", arr);
30  *                      exit(0);
31  *              }
32  *      }
33  */
34 int main(int argc, char *argv[])
35 {
36         if (argc != 2)
37                 return 1;
38
39         if (strcmp(argv[1], "depends") == 0) {
40                 printf("build_assert\n");
41                 return 0;
42         }
43
44         return 1;
45 }