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

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/strings.h')
-rw-r--r--src/base/strings.h56
1 files changed, 28 insertions, 28 deletions
diff --git a/src/base/strings.h b/src/base/strings.h
index 832cb1e..d75daa2 100644
--- a/src/base/strings.h
+++ b/src/base/strings.h
@@ -1,28 +1,28 @@
-/**
- * \file strings.h
- * \brief A dynamic array of C strings.
- * \author Copyright (c) 2002-2008 Jason Perkins and the Premake project
- *
- * \defgroup strings String Collection
- * \ingroup base
- *
- * A dynamic array of C strings.
- *
- * @{
- */
-#if !defined(PREMAKE_STRINGS_H)
-#define PREMAKE_STRINGS_H
-
-DECLARE_CLASS(Strings);
-
-Strings strings_create(void);
-void strings_destroy(Strings strs);
-
-void strings_add(Strings strs, const char* item);
-void strings_append(Strings dest, Strings src);
-const char* strings_item(Strings strs, int index);
-void strings_set(Strings strs, int index, const char* item);
-int strings_size(Strings strs);
-
-#endif
-/** @} */
+/**
+ * \file strings.h
+ * \brief A dynamic array of C strings.
+ * \author Copyright (c) 2002-2008 Jason Perkins and the Premake project
+ *
+ * \defgroup strings String Collection
+ * \ingroup base
+ *
+ * A dynamic array of C strings.
+ *
+ * @{
+ */
+#if !defined(PREMAKE_STRINGS_H)
+#define PREMAKE_STRINGS_H
+
+DECLARE_CLASS(Strings);
+
+Strings strings_create(void);
+void strings_destroy(Strings strs);
+
+void strings_add(Strings strs, const char* item);
+void strings_append(Strings dest, Strings src);
+const char* strings_item(Strings strs, int index);
+void strings_set(Strings strs, int index, const char* item);
+int strings_size(Strings strs);
+
+#endif
+/** @} */