summaryrefslogtreecommitdiff
path: root/eet.c.in
diff options
context:
space:
mode:
authordoursse <doursse>2008-03-29 08:39:22 +0000
committerdoursse <doursse@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>2008-03-29 08:39:22 +0000
commit088efcfc8135e02580a4b87304b4f11ae88cc178 (patch)
treef71aefb2d470f0a98562c8e02ec0ab7d9e6fb5ee /eet.c.in
parentb66de95fbe44026e8604b8960d3c97f27705d450 (diff)
downloadeet-088efcfc8135e02580a4b87304b4f11ae88cc178.tar.gz
use INPUT entry of Doxyfile instead of adding Eet.h at the end of eet.c, update the date. remove trailing spaces. Maybe we should add Cedric as author
SVN revision: 34140
Diffstat (limited to 'eet.c.in')
-rw-r--r--eet.c.in16
1 files changed, 8 insertions, 8 deletions
diff --git a/eet.c.in b/eet.c.in
index 78c9e17..3d6c026 100644
--- a/eet.c.in
+++ b/eet.c.in
@@ -1,7 +1,7 @@
-/**
-@file
+/**
+@file eet.c
@brief Eet Data Handling Library Public API Calls
-
+
These routines are used for Eet Library interaction
*/
@@ -9,9 +9,9 @@ These routines are used for Eet Library interaction
@mainpage Eet Library Documentation
@image html eet.png
-@version @VERSION@
-@author Carsten Haitzler <raster@rasterman.com>
-@date 2000-2004
+@version @PACKAGE_VERSION@
+@author Carsten Haitzler <raster\@rasterman.com>
+@date 2000-2008
@@ -71,14 +71,14 @@ main(int argc, char **argv)
};
eet_init();
-
+
// blindly open an file for output and write strings with their NUL char
ef = eet_open("test.eet", EET_FILE_MODE_WRITE);
eet_write(ef, "Entry 1", entries[0], strlen(entries[0]) + 1, 0);
eet_write(ef, "Entry 2", entries[1], strlen(entries[1]) + 1, 1);
eet_write(ef, "Entry 3", entries[2], strlen(entries[2]) + 1, 0);
eet_close(ef);
-
+
// open the file again and blindly get the entries we wrote
ef = eet_open("test.eet", EET_FILE_MODE_READ);
ret = eet_read(ef, "Entry 1", &size);