summaryrefslogtreecommitdiff
path: root/jsmn.h
diff options
context:
space:
mode:
authorGabriel Gritsch <gabriel@gritsch-soft.com>2014-02-21 09:53:45 +0100
committerGabriel Gritsch <gabriel@gritsch-soft.com>2014-02-21 09:53:45 +0100
commitdb379ec1248ff8a24c3bb330d46e73898ff3adc6 (patch)
treeb0f6e227730318b1601dfa77e28912e7ad05cff5 /jsmn.h
parenta89501b2fbc4fa30b0653328931cf7d9162851e6 (diff)
Added "extern C" to use it with CPP.
Diffstat (limited to 'jsmn.h')
-rw-r--r--jsmn.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/jsmn.h b/jsmn.h
index 54930ad55..c8f388cd0 100644
--- a/jsmn.h
+++ b/jsmn.h
@@ -1,6 +1,10 @@
#ifndef __JSMN_H_
#define __JSMN_H_
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/**
* JSON type identifier. Basic types are:
* o Object
@@ -62,4 +66,8 @@ void jsmn_init(jsmn_parser *parser);
jsmnerr_t jsmn_parse(jsmn_parser *parser, const char *js, size_t len,
jsmntok_t *tokens, unsigned int num_tokens);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* __JSMN_H_ */