Changeset c78c032
- Timestamp:
- 2007-10-12T12:11:32Z (17 years ago)
- Branches:
- master
- Children:
- f618a4a
- Parents:
- d444c09
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
conf.h
rd444c09 rc78c032 51 51 } conf_t; 52 52 53 conf_t *conf_load( int argc, char *argv[] );53 G_GNUC_MALLOC conf_t *conf_load( int argc, char *argv[] ); 54 54 void conf_loaddefaults( irc_t *irc ); 55 55 -
crypting.h
rd444c09 rc78c032 25 25 26 26 int checkpass (const char *password, const char *md5sum); 27 char *hashpass (const char *password);28 char *obfucrypt (char *line, const char *password);29 char *deobfucrypt (char *line, const char *password);27 G_GNUC_MALLOC char *hashpass (const char *password); 28 G_GNUC_MALLOC char *obfucrypt (char *line, const char *password); 29 G_GNUC_MALLOC char *deobfucrypt (char *line, const char *password); -
help.h
rd444c09 rc78c032 43 43 } help_t; 44 44 45 help_t *help_init( help_t **help, const char *helpfile );45 G_GNUC_MALLOC help_t *help_init( help_t **help, const char *helpfile ); 46 46 char *help_get( help_t **help, char *string ); 47 47 -
storage.h
rd444c09 rc78c032 62 62 63 63 void register_storage_backend(storage_t *); 64 G List *storage_init(const char *primary, char **migrate);64 G_GNUC_MALLOC GList *storage_init(const char *primary, char **migrate); 65 65 66 66 #endif /* __STORAGE_H__ */
Note: See TracChangeset
for help on using the changeset viewer.