summaryrefslogtreecommitdiffstats
path: root/sord
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-02-01 19:30:36 +0000
committerDavid Robillard <d@drobilla.net>2011-02-01 19:30:36 +0000
commitc548e35abaf65266f2d806e375cb8e38adf705c4 (patch)
treeb2f50ad0d2bff55a105c25fa6007d0a841087033 /sord
parent07e2e5c82e533d12b902dab619a2f74970aca09b (diff)
downloadsord-c548e35abaf65266f2d806e375cb8e38adf705c4.tar.gz
sord-c548e35abaf65266f2d806e375cb8e38adf705c4.tar.bz2
sord-c548e35abaf65266f2d806e375cb8e38adf705c4.zip
Terser iteration API.
git-svn-id: http://svn.drobilla.net/sord/trunk@14 3d64ff67-21c5-427c-a301-fe4f08042e5a
Diffstat (limited to 'sord')
-rw-r--r--sord/sord.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sord/sord.h b/sord/sord.h
index 0820f9b..4720e76 100644
--- a/sord/sord.h
+++ b/sord/sord.h
@@ -315,12 +315,12 @@ sord_iter_get_sord(SordIter iter);
/** Increment @a iter to point to the next statement. */
SORD_API
bool
-sord_iter_increment(SordIter iter);
+sord_iter_next(SordIter iter);
/** Return true iff @a iter is at the end of its range. */
SORD_API
bool
-sord_iter_is_end(SordIter iter);
+sord_iter_end(SordIter iter);
/** Free @a iter. */
SORD_API