mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Fixed a few typos.
This commit is contained in:
parent
37d9728830
commit
21e514572c
|
@ -2175,9 +2175,9 @@ int get_friendlist(Messenger *m, int **out_list, uint32_t *out_list_length)
|
|||
return 0;
|
||||
}
|
||||
|
||||
/* Return the number of chat in the instance m.
|
||||
/* Return the number of chats in the instance m.
|
||||
* You should use this to determine how much memory to allocate
|
||||
* for copy_grouplist. */
|
||||
* for copy_chatlist. */
|
||||
uint32_t count_chatlist(Messenger *m)
|
||||
{
|
||||
uint32_t ret = 0;
|
||||
|
|
|
@ -635,7 +635,7 @@ int get_friendlist(Messenger *m, int **out_list, uint32_t *out_list_length);
|
|||
|
||||
/* Return the number of chats in the instance m.
|
||||
* You should use this to determine how much memory to allocate
|
||||
* for copy_grouplist. */
|
||||
* for copy_chatlist. */
|
||||
uint32_t count_chatlist(Messenger *m);
|
||||
|
||||
/* Copy a list of valid chat IDs into the array out_list.
|
||||
|
|
|
@ -479,7 +479,7 @@ int tox_group_message_send(Tox *tox, int groupnumber, uint8_t *message, uint32_t
|
|||
|
||||
/* Return the number of chats in the instance m.
|
||||
* You should use this to determine how much memory to allocate
|
||||
* for copy_friendlist. */
|
||||
* for copy_chatlist. */
|
||||
uint32_t tox_count_chatlist(Tox *tox)
|
||||
{
|
||||
Messenger *m = tox;
|
||||
|
|
|
@ -407,7 +407,7 @@ int tox_group_message_send(Tox *tox, int groupnumber, uint8_t *message, uint32_t
|
|||
|
||||
/* Return the number of chats in the instance m.
|
||||
* You should use this to determine how much memory to allocate
|
||||
* for copy_friendlist. */
|
||||
* for copy_chatlist. */
|
||||
uint32_t tox_count_chatlist(Tox *tox);
|
||||
|
||||
/* Copy a list of valid chat IDs into the array out_list.
|
||||
|
|
Loading…
Reference in New Issue
Block a user