diff options
author | David Robillard <d@drobilla.net> | 2011-05-05 03:52:54 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-05-05 03:52:54 +0000 |
commit | 1e636d1b28296511d7852b700c4ee9cc136fb7ec (patch) | |
tree | 4798b1f0d5de7438c44f165a20e179ee2031b4e7 | |
parent | 0d433faadd5ea92dfd83269ba13912c65bff3696 (diff) | |
download | sord-1e636d1b28296511d7852b700c4ee9cc136fb7ec.tar.gz sord-1e636d1b28296511d7852b700c4ee9cc136fb7ec.tar.bz2 sord-1e636d1b28296511d7852b700c4ee9cc136fb7ec.zip |
Align.
git-svn-id: http://svn.drobilla.net/sord/trunk@105 3d64ff67-21c5-427c-a301-fe4f08042e5a
-rw-r--r-- | sord/sord.h | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/sord/sord.h b/sord/sord.h index 8d31085..8159170 100644 --- a/sord/sord.h +++ b/sord/sord.h @@ -427,21 +427,21 @@ sord_quad_match(const SordQuad x, const SordQuad y); */ SORD_API bool -sord_read_file(SordModel* model, - const uint8_t* uri, - SordNode* graph, - const uint8_t* blank_prefix); +sord_read_file(SordModel* model, + const uint8_t* uri, + SordNode* graph, + const uint8_t* blank_prefix); /** Read a file handle into a model. */ SORD_API bool -sord_read_file_handle(SordModel* model, - FILE* fd, - const uint8_t* base_uri, - SordNode* graph, - const uint8_t* blank_prefix); +sord_read_file_handle(SordModel* model, + FILE* fd, + const uint8_t* base_uri, + SordNode* graph, + const uint8_t* blank_prefix); /** Read a string into a model. @@ -457,23 +457,23 @@ sord_read_string(SordModel* model, */ SORD_API bool -sord_write_file(SordModel* model, - SerdEnv* env, - const uint8_t* uri, - SordNode* graph, - const uint8_t* blank_prefix); +sord_write_file(SordModel* model, + SerdEnv* env, + const uint8_t* uri, + SordNode* graph, + const uint8_t* blank_prefix); /** Write a model to a file handle. */ SORD_API bool -sord_write_file_handle(SordModel* model, - SerdEnv* env, - FILE* fd, - const uint8_t* base_uri, - SordNode* graph, - const uint8_t* blank_prefix); +sord_write_file_handle(SordModel* model, + SerdEnv* env, + FILE* fd, + const uint8_t* base_uri, + SordNode* graph, + const uint8_t* blank_prefix); /** Write a model to a string. |