diff options
| author | Reiner Herrmann <reiner@reiner-h.de> | 2011-01-29 16:20:40 +0100 |
|---|---|---|
| committer | Reiner Herrmann <reiner@reiner-h.de> | 2011-01-29 16:20:40 +0100 |
| commit | de36871c582a4f228df71e15560c020f34d39d4a (patch) | |
| tree | 07b5ee2e202b1bec7547e3b3ac8c857d7fec6540 /src/hand.c | |
| parent | a85546a9a58ce313302f1be91923a14c5723375c (diff) | |
added more documentation
Diffstat (limited to 'src/hand.c')
| -rw-r--r-- | src/hand.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,7 +16,7 @@ static int hand_comparator(const void *a, const void *b) /** * Sord the cards in a hand - * @param[inout] h Pointer to hand that should be sorted + * @param[in,out] h Pointer to hand that should be sorted */ void hand_sort(hand_t *h) { @@ -27,7 +27,7 @@ void hand_sort(hand_t *h) /** * Removes a card from a hand by setting it to invalid value 0 - * @param[inout] h Hand to remove card from + * @param[in,out] h Hand to remove card from * @param[in] card_index Index of card to remove */ void hand_remove_card(hand_t *h, const uint8_t card_index) |
