X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=h%2Fprototypes.h;h=26981f89fe839cd9e50525d74f7f5f4b87851158;hb=0347722f5b69de06a867b73ddc23388d082ab219;hp=0e608d007909961cc85e61034741da44bbf1a0f8;hpb=1e588a59440aa1bee55c8d6d69003059c1d2af97;p=mmh diff --git a/h/prototypes.h b/h/prototypes.h index 0e608d0..26981f8 100644 --- a/h/prototypes.h +++ b/h/prototypes.h @@ -28,11 +28,10 @@ void advertise(char *, char *, char *, va_list); void advise(char *, char *, ...); void ambigsw(char *, struct swit *); char **brkstring(char *, char *, char *); -int check_charset(char *, int); +int is_native_charset(char *); char *concat(char *, ...); int context_del(char *); char *context_find(char *); -int context_foil(char *); void context_read(void); void context_replace(char *, char *); void context_save(void); @@ -45,7 +44,7 @@ char *expandfol(char *); char *expanddir(char *); int ext_hook(char *, char *, char *); int folder_addmsg(struct msgs **, char *, int, int, int, int, char *); -int folder_delmsgs(struct msgs *, int, int); +int folder_delmsgs(struct msgs *, int); void folder_free(struct msgs *); struct msgs *folder_read(char *); struct msgs *folder_realloc(struct msgs *, int, int); @@ -73,7 +72,6 @@ char *m_mktemp(const char *, int *, FILE **); char *m_mktemp2(const char *, const char *, int *, FILE **); void thisisanmbox(FILE *); int makedir(char *); -char *nmh_getpass(const char *); char *norm_charmap(char *); char *new_fs(char *, char *); int pidwait(pid_t, int); @@ -85,8 +83,6 @@ void push(void); char *pwd(void); char *mhbasename(char *); void readconfig(struct node **, FILE *, char *, int); -int refile(char **, char *); -void ruserpass(char *, char **, char **); int seq_addmsg(struct msgs *, char *, int, int, int); int seq_addsel(struct msgs *, char *, int, int); char *seq_bits(struct msgs *); @@ -107,6 +103,7 @@ int smatch(char *, struct swit *); char *snprintb(char *, size_t, unsigned, char *); int stringdex(char *, char *); char *toabsdir(char *); +char *trim(unsigned char *); char *trimcpy(unsigned char *); int unputenv(char *); int uprf(char *, char *); @@ -114,14 +111,13 @@ int vfgets(FILE *, char **); char *write_charset_8bit(void); int mh_strcasecmp(const char *s1, const char *s2); -int strncasecmp(const char *s1, const char *s2, size_t n); /* ** prototypes for some routines in uip */ int distout(char *, char *, char *); -int what_now(char *, int, int, char *, char *, int, struct msgs *, +int what_now(char *, int, char *, char *, int, struct msgs *, char *, char *); /* @@ -130,3 +126,35 @@ int what_now(char *, int, int, char *, char *, int, struct msgs *, char *LocalName(void); /* hostname */ char *getusername(void); char *getfullname(void); + + +/* +** prototypes for message and sequence manipulation +*/ +void clear_msg_flags(struct msgs *, int); +void copy_msg_flags(struct msgs *, int, int); +void get_msg_flags(struct msgs *, seqset_t *, int); +void set_msg_flags(struct msgs *, seqset_t *, int); +seqset_t does_exist(struct msgs *, int); +void unset_exists(struct msgs *, int); +void set_exists(struct msgs *, int); +seqset_t is_selected(struct msgs *, int); +void unset_selected(struct msgs *, int); +void set_selected(struct msgs *, int); +seqset_t is_unseen(struct msgs *, int); +void unset_unseen(struct msgs *, int); +void set_unseen(struct msgs *, int); +seqset_t in_sequence(struct msgs *, int, int); +void clear_sequence(struct msgs *, int, int); +void add_sequence(struct msgs *, int, int); + +int is_seq_private(struct msgs *, int); +void make_seq_public(struct msgs *, int); +void make_seq_private(struct msgs *, int); +void make_all_public(struct msgs *); + +void clear_folder_flags(struct msgs *); +int is_readonly(struct msgs *); +void set_readonly(struct msgs *); +int other_files(struct msgs *); +void set_other_files(struct msgs *);