Usage of const

This commit is contained in:
James Booth
2012-03-09 01:06:55 +00:00
parent ea3a09ac26
commit f533c6c162
14 changed files with 94 additions and 84 deletions

View File

@@ -29,8 +29,8 @@ struct contact_list {
};
void contact_list_clear(void);
int contact_list_add(char *contact);
int contact_list_remove(char *contact);
int contact_list_add(const char * const contact);
int contact_list_remove(const char * const contact);
struct contact_list *get_contact_list(void);
#endif