Merge pull request #24 from ajneu/master1

header-guard for lib.h
pull/25/head
Marc Kleine-Budde 2016-06-13 11:00:34 +02:00 committed by GitHub
commit 8c5cd245f6
1 changed files with 7 additions and 0 deletions

7
lib.h
View File

@ -41,6 +41,11 @@
* *
*/ */
#ifndef CAN_UTILS_LIB_H
#define CAN_UTILS_LIB_H
#include <stdio.h>
/* buffer sizes for CAN frame string representations */ /* buffer sizes for CAN frame string representations */
#define CL_ID (sizeof("12345678##1")) #define CL_ID (sizeof("12345678##1"))
@ -208,3 +213,5 @@ void snprintf_can_error_frame(char *buf, size_t len, const struct canfd_frame *c
/* /*
* Creates a CAN error frame output in user readable format. * Creates a CAN error frame output in user readable format.
*/ */
#endif