summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLloyd Hilaiel <lloyd@hilaiel.com>2014-02-15 10:20:16 +0100
committerLloyd Hilaiel <lloyd@hilaiel.com>2014-02-15 10:20:16 +0100
commit517abfae818443511f9d2777b8c4acd0ed9ac2b0 (patch)
tree780e24fad23bfa1061ae2534f9b83b229a66f8d7 /src
parent71ce86b48b60040835531493465be02923b21acb (diff)
downloadyajl-517abfae818443511f9d2777b8c4acd0ed9ac2b0.tar.gz
update copyright and email
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt2
-rw-r--r--src/api/yajl_common.h6
-rw-r--r--src/api/yajl_gen.h2
-rw-r--r--src/api/yajl_parse.h2
-rw-r--r--src/yajl2
-rw-r--r--src/yajl.c2
-rw-r--r--src/yajl_alloc.c2
-rw-r--r--src/yajl_alloc.h2
-rw-r--r--src/yajl_buf.c2
-rw-r--r--src/yajl_buf.h2
-rw-r--r--src/yajl_bytestack.h2
-rw-r--r--src/yajl_encode.c2
-rw-r--r--src/yajl_encode.h2
-rw-r--r--src/yajl_gen.c2
-rw-r--r--src/yajl_lex.c2
-rw-r--r--src/yajl_lex.h2
-rw-r--r--src/yajl_parser.c2
-rw-r--r--src/yajl_parser.h2
18 files changed, 20 insertions, 20 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index e36b736..6ebf648 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -1,4 +1,4 @@
-# Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
+# Copyright (c) 2007-2014, Lloyd Hilaiel <me@lloyd.io>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
diff --git a/src/api/yajl_common.h b/src/api/yajl_common.h
index b208fd7..9596ef9 100644
--- a/src/api/yajl_common.h
+++ b/src/api/yajl_common.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
+ * Copyright (c) 2007-2014, Lloyd Hilaiel <me@lloyd.io>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@@ -21,7 +21,7 @@
#ifdef __cplusplus
extern "C" {
-#endif
+#endif
#define YAJL_MAX_DEPTH 128
@@ -40,7 +40,7 @@ extern "C" {
# else
# define YAJL_API
# endif
-#endif
+#endif
/** pointer to a malloc function, supporting client overriding memory
* allocation routines */
diff --git a/src/api/yajl_gen.h b/src/api/yajl_gen.h
index 6d4a8ad..4962e06 100644
--- a/src/api/yajl_gen.h
+++ b/src/api/yajl_gen.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
+ * Copyright (c) 2007-2014, Lloyd Hilaiel <me@lloyd.io>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/api/yajl_parse.h b/src/api/yajl_parse.h
index 55c8311..1c25a60 100644
--- a/src/api/yajl_parse.h
+++ b/src/api/yajl_parse.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
+ * Copyright (c) 2007-2014, Lloyd Hilaiel <me@lloyd.io>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/yajl b/src/yajl
index b04c170..45099e9 100644
--- a/src/yajl
+++ b/src/yajl
@@ -6,7 +6,7 @@
/*!
\mainpage Yet Another JSON Library (YAJL)
\author Lloyd Hilaiel
- \date 2007-2011
+ \date 2007-2014
Yet Another JSON Library (YAJL) is a small event-driven (SAX-style)
JSON parser written in ANSI C, and a small validating JSON
diff --git a/src/yajl.c b/src/yajl.c
index 293e545..d477893 100644
--- a/src/yajl.c
+++ b/src/yajl.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
+ * Copyright (c) 2007-2014, Lloyd Hilaiel <me@lloyd.io>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/yajl_alloc.c b/src/yajl_alloc.c
index 20202ec..96ad1d3 100644
--- a/src/yajl_alloc.c
+++ b/src/yajl_alloc.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
+ * Copyright (c) 2007-2014, Lloyd Hilaiel <me@lloyd.io>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/yajl_alloc.h b/src/yajl_alloc.h
index 85dbad0..203c2f9 100644
--- a/src/yajl_alloc.h
+++ b/src/yajl_alloc.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
+ * Copyright (c) 2007-2014, Lloyd Hilaiel <me@lloyd.io>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/yajl_buf.c b/src/yajl_buf.c
index 0d249d3..1aeafde 100644
--- a/src/yajl_buf.c
+++ b/src/yajl_buf.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
+ * Copyright (c) 2007-2014, Lloyd Hilaiel <me@lloyd.io>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/yajl_buf.h b/src/yajl_buf.h
index 682457f..a358246 100644
--- a/src/yajl_buf.h
+++ b/src/yajl_buf.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
+ * Copyright (c) 2007-2014, Lloyd Hilaiel <me@lloyd.io>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/yajl_bytestack.h b/src/yajl_bytestack.h
index 8c34b71..9ea7d15 100644
--- a/src/yajl_bytestack.h
+++ b/src/yajl_bytestack.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
+ * Copyright (c) 2007-2014, Lloyd Hilaiel <me@lloyd.io>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/yajl_encode.c b/src/yajl_encode.c
index 9dc9a3e..fd08258 100644
--- a/src/yajl_encode.c
+++ b/src/yajl_encode.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
+ * Copyright (c) 2007-2014, Lloyd Hilaiel <me@lloyd.io>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/yajl_encode.h b/src/yajl_encode.h
index ac7acc6..853a1a7 100644
--- a/src/yajl_encode.h
+++ b/src/yajl_encode.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
+ * Copyright (c) 2007-2014, Lloyd Hilaiel <me@lloyd.io>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/yajl_gen.c b/src/yajl_gen.c
index 86b5b46..eccfa42 100644
--- a/src/yajl_gen.c
+++ b/src/yajl_gen.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
+ * Copyright (c) 2007-2014, Lloyd Hilaiel <me@lloyd.io>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/yajl_lex.c b/src/yajl_lex.c
index b098e6a..e05453b 100644
--- a/src/yajl_lex.c
+++ b/src/yajl_lex.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
+ * Copyright (c) 2007-2014, Lloyd Hilaiel <me@lloyd.io>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/yajl_lex.h b/src/yajl_lex.h
index 20edf47..9f647ed 100644
--- a/src/yajl_lex.h
+++ b/src/yajl_lex.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
+ * Copyright (c) 2007-2014, Lloyd Hilaiel <me@lloyd.io>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/yajl_parser.c b/src/yajl_parser.c
index 9788022..1a528a6 100644
--- a/src/yajl_parser.c
+++ b/src/yajl_parser.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
+ * Copyright (c) 2007-2014, Lloyd Hilaiel <me@lloyd.io>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/yajl_parser.h b/src/yajl_parser.h
index c12fc1b..c79299a 100644
--- a/src/yajl_parser.h
+++ b/src/yajl_parser.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>
+ * Copyright (c) 2007-2014, Lloyd Hilaiel <me@lloyd.io>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above