aboutsummaryrefslogtreecommitdiffstats
path: root/src/symap.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-08-08 14:46:53 +0000
committerDavid Robillard <d@drobilla.net>2014-08-08 14:46:53 +0000
commitabf0666c776298c873f3ff32e4b3874f0b9db357 (patch)
tree7f7ebe931a9259b69ca60699c8e1050b022cd451 /src/symap.c
parentb76b671058c363adc196ff165f730f93f4cb841d (diff)
downloadjalv-abf0666c776298c873f3ff32e4b3874f0b9db357.tar.gz
jalv-abf0666c776298c873f3ff32e4b3874f0b9db357.tar.bz2
jalv-abf0666c776298c873f3ff32e4b3874f0b9db357.zip
Use Markdown in doc comments for better source readability.
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@5429 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/symap.c')
-rw-r--r--src/symap.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/symap.c b/src/symap.c
index a218c81..40c8980 100644
--- a/src/symap.c
+++ b/src/symap.c
@@ -1,5 +1,5 @@
/*
- Copyright 2011-2012 David Robillard <http://drobilla.net>
+ Copyright 2011-2014 David Robillard <http://drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
@@ -45,12 +45,12 @@ struct SymapImpl {
char** symbols;
/**
- Array of IDs, sorted by corresponding string in @ref symbols.
+ Array of IDs, sorted by corresponding string in `symbols`.
*/
uint32_t* index;
/**
- Number of symbols (number of items in @ref symbols and @ref index).
+ Number of symbols (number of items in `symbols` and `index`).
*/
uint32_t size;
};
@@ -87,8 +87,8 @@ symap_strdup(const char* str)
}
/**
- Return the index into map->index (not the ID) corresponding to @c sym,
- or the index where a new entry for @c sym should be inserted.
+ Return the index into map->index (not the ID) corresponding to `sym`,
+ or the index where a new entry for `sym` should be inserted.
*/
static uint32_t
symap_search(const Symap* map, const char* sym, bool* exact)