Go to the documentation of this file.00001
00024 #ifndef __EXAMPLES_COMMON_H__
00025 #define __EXAMPLES_COMMON_H__
00026
00027 #include <stdlib.h>
00028 #include <stdint.h>
00029 #include <stdbool.h>
00030 #include <string.h>
00031 #include <unistd.h>
00032 #include <assert.h>
00033 #include <stdio.h>
00034 #include <time.h>
00035 #include <errno.h>
00036 #include <sys/time.h>
00037 #include "../mkavl.h"
00038
00042 #ifndef NELEMS
00043 #define NELEMS(x) (sizeof(x) / sizeof(x[0]))
00044 #endif
00045
00050 #ifndef CT_ASSERT
00051 #define CT_ASSERT(e) extern char (*CT_ASSERT(void)) [sizeof(char[1 - 2*!(e)])]
00052 #endif
00053
00057 #define EXAMPLES_RUNAWAY_SANITY 100000
00058
00065 static inline void
00066 assert_abort (bool condition)
00067 {
00068 if (!condition) {
00069 abort();
00070 }
00071 }
00072
00079 static inline double
00080 timeval_to_seconds (struct timeval *tv)
00081 {
00082 if (NULL == tv) {
00083 return (0.0);
00084 }
00085
00086 return (tv->tv_sec + (tv->tv_usec / 1000000.0));
00087 }
00088
00100 static inline size_t
00101 my_strlcpy (char *dst, const char *src, size_t siz)
00102 {
00103 char *d = dst;
00104 const char *s = src;
00105 size_t n = siz;
00106
00107
00108 if (n != 0 && --n != 0) {
00109 do {
00110 if ((*d++ = *s++) == 0)
00111 break;
00112 } while (--n != 0);
00113 }
00114
00115
00116 if (n == 0) {
00117 if (siz != 0)
00118 *d = '\0';
00119 while (*s++)
00120 ;
00121 }
00122
00123 return(s - src - 1);
00124 }
00125
00126 #endif