summaryrefslogtreecommitdiff
path: root/epan/base64.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2011-12-29 00:08:47 +0000
committerGerald Combs <gerald@wireshark.org>2011-12-29 00:08:47 +0000
commit6b178bd41548b561913be45a6ee649a497ec5d1f (patch)
tree81727fd787260953b047a6b711a1ebb3a6946684 /epan/base64.h
parentcb9725ce2beefe34c08dc954ff2a9c51c6a7e3bd (diff)
downloadwireshark-6b178bd41548b561913be45a6ee649a497ec5d1f.tar.gz
Add 'extern "C"' wrappers and #include guards to various header files.
svn path=/trunk/; revision=40321
Diffstat (limited to 'epan/base64.h')
-rw-r--r--epan/base64.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/base64.h b/epan/base64.h
index ef68eb4f63..8b18616efb 100644
--- a/epan/base64.h
+++ b/epan/base64.h
@@ -24,11 +24,12 @@
#ifndef __BASE64_H__
#define __BASE64_H__
+#include <epan/tvbuff.h>
+
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
-#include <epan/tvbuff.h>
/* In-place decoding of a base64 string. */
size_t epan_base64_decode(char *s);