Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Straub <bstraub@github.com>2012-06-06 23:25:22 +0400
committerBen Straub <bstraub@github.com>2012-06-06 23:25:22 +0400
commit8a385c0482aff009738f509892863707592434b9 (patch)
tree9596ac3acca99274393c0f8e68f9ee0386088eaf
parent2c2cde47b8241e66cacd535d5f8c269d623a47f0 (diff)
Move git__date_parse declaration to util.h.
-rw-r--r--src/date.c2
-rw-r--r--src/date.h14
-rw-r--r--src/revparse.c1
-rw-r--r--src/util.h10
-rw-r--r--tests-clar/date/date.c2
5 files changed, 12 insertions, 17 deletions
diff --git a/src/date.c b/src/date.c
index a2f36982a..5529dc2f6 100644
--- a/src/date.c
+++ b/src/date.c
@@ -10,7 +10,7 @@
#include <sys/time.h>
#endif
-#include "date.h"
+#include "util.h"
#include "cache.h"
#include "posix.h"
diff --git a/src/date.h b/src/date.h
deleted file mode 100644
index 6859ee5e6..000000000
--- a/src/date.h
+++ /dev/null
@@ -1,14 +0,0 @@
-/*
- * Copyright (C) 2009-2012 the libgit2 contributors
- *
- * This file is part of libgit2, distributed under the GNU GPL v2 with
- * a Linking Exception. For full terms see the included COPYING file.
- */
-#ifndef INCLUDE_date_h__
-#define INCLUDE_date_h__
-
-#include "git2/types.h"
-
-int git__date_parse(git_time_t *out, const char *date);
-
-#endif
diff --git a/src/revparse.c b/src/revparse.c
index a6f2a159f..3312345bb 100644
--- a/src/revparse.c
+++ b/src/revparse.c
@@ -9,7 +9,6 @@
#include "common.h"
#include "buffer.h"
-#include "date.h"
#include "tree.h"
#include "git2.h"
diff --git a/src/util.h b/src/util.h
index c4a55f524..eed2bc80c 100644
--- a/src/util.h
+++ b/src/util.h
@@ -230,4 +230,14 @@ GIT_INLINE(bool) git__iswildcard(int c)
*/
extern int git__parse_bool(int *out, const char *value);
+/*
+ * Parse a string into a value as a git_time_t.
+ *
+ * Sample valid input:
+ * - "yesterday"
+ * - "July 17, 2003"
+ * - "2003-7-17 08:23"
+ */
+int git__date_parse(git_time_t *out, const char *date);
+
#endif /* INCLUDE_util_h__ */
diff --git a/tests-clar/date/date.c b/tests-clar/date/date.c
index 1018a1383..d44ef85c8 100644
--- a/tests-clar/date/date.c
+++ b/tests-clar/date/date.c
@@ -1,6 +1,6 @@
#include "clar_libgit2.h"
-#include "date.h"
+#include "util.h"
void test_date_date__overflow(void)
{