aboutsummaryrefslogtreecommitdiffstats
path: root/src/symap.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-05-27 13:37:07 -0400
committerDavid Robillard <d@drobilla.net>2022-05-27 13:40:33 -0400
commitd22bd43dd053b060dfce40285cd968602efbce78 (patch)
tree968e688788a4da06c97cbb1bf276eaf8a1760ac6 /src/symap.h
parentea783414b68512c15b9523cde2bfb4f93e433d56 (diff)
downloadjalv-d22bd43dd053b060dfce40285cd968602efbce78.tar.gz
jalv-d22bd43dd053b060dfce40285cd968602efbce78.tar.bz2
jalv-d22bd43dd053b060dfce40285cd968602efbce78.zip
Use consistent comment styles
Diffstat (limited to 'src/symap.h')
-rw-r--r--src/symap.h16
1 files changed, 5 insertions, 11 deletions
diff --git a/src/symap.h b/src/symap.h
index 25b12cd..7b74d9f 100644
--- a/src/symap.h
+++ b/src/symap.h
@@ -1,5 +1,5 @@
/*
- Copyright 2011-2014 David Robillard <d@drobilla.net>
+ Copyright 2011-2022 David Robillard <d@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
@@ -29,21 +29,15 @@
typedef struct SymapImpl Symap;
-/**
- Create a new symbol map.
-*/
+/// Create a new symbol map
Symap*
symap_new(void);
-/**
- Free a symbol map.
-*/
+/// Free a symbol map
void
symap_free(Symap* map);
-/**
- Map a string to a symbol ID if it is already mapped, otherwise return 0.
-*/
+/// Map a string to a symbol ID if it is already mapped, otherwise return 0
uint32_t
symap_try_map(Symap* map, const char* sym);
@@ -63,4 +57,4 @@ symap_map(Symap* map, const char* sym);
const char*
symap_unmap(Symap* map, uint32_t id);
-#endif /* SYMAP_H */
+#endif // SYMAP_H