NOSTATICFN for src/*

This commit is contained in:
nhkeni
2024-03-14 17:41:51 -04:00
parent d523041b60
commit 9c0ed8ae63
111 changed files with 3871 additions and 3879 deletions

View File

@@ -13,19 +13,19 @@
#include "wintty.h"
#endif
static const char *intermed(void);
staticfn const char *intermed(void);
/* sometimes find_qarti(gi.invent), and gi.invent can be null */
static struct obj *find_qarti(struct obj *) NO_NNARGS;
static const char *neminame(void);
static const char *guardname(void);
static const char *homebase(void);
static void qtext_pronoun(char, char);
static void convert_arg(char);
static void convert_line(char *,char *);
static void deliver_by_pline(const char *);
static void deliver_by_window(const char *, int);
static boolean skip_pager(boolean);
static boolean com_pager_core(const char *, const char *, boolean, char **);
staticfn struct obj *find_qarti(struct obj *) NO_NNARGS;
staticfn const char *neminame(void);
staticfn const char *guardname(void);
staticfn const char *homebase(void);
staticfn void qtext_pronoun(char, char);
staticfn void convert_arg(char);
staticfn void convert_line(char *,char *);
staticfn void deliver_by_pline(const char *);
staticfn void deliver_by_window(const char *, int);
staticfn boolean skip_pager(boolean);
staticfn boolean com_pager_core(const char *, const char *, boolean, char **);
short
quest_info(int typ)
@@ -57,7 +57,7 @@ ldrname(void)
}
/* return your intermediate target string */
static const char *
staticfn const char *
intermed(void)
{
return gu.urole.intermed;
@@ -69,7 +69,7 @@ is_quest_artifact(struct obj *otmp)
return (boolean) (otmp->oartifact == gu.urole.questarti);
}
static struct obj *
staticfn struct obj *
find_qarti(struct obj *ochain)
{
struct obj *otmp, *qarti;
@@ -120,7 +120,7 @@ find_quest_artifact(unsigned whichchains)
}
/* return your role nemesis' name */
static const char *
staticfn const char *
neminame(void)
{
int i = gu.urole.neminum;
@@ -130,7 +130,7 @@ neminame(void)
return gn.nambuf;
}
static const char *
staticfn const char *
guardname(void) /* return your role leader's guard monster name */
{
int i = gu.urole.guardnum;
@@ -138,7 +138,7 @@ guardname(void) /* return your role leader's guard monster name */
return mons[i].pmnames[NEUTRAL];
}
static const char *
staticfn const char *
homebase(void) /* return your role leader's location */
{
return gu.urole.homebase;
@@ -195,7 +195,7 @@ stinky_nemesis(struct monst *mon)
/* replace deity, leader, nemesis, or artifact name with pronoun;
overwrites cvt_buf[] */
static void
staticfn void
qtext_pronoun(
char who, /* 'd' => deity, 'l' => leader, 'n' => nemesis, 'o' => arti */
char which) /* 'h'|'H'|'i'|'I'|'j'|'J' */
@@ -232,7 +232,7 @@ qtext_pronoun(
return;
}
static void
staticfn void
convert_arg(char c)
{
const char *str;
@@ -324,7 +324,7 @@ convert_arg(char c)
Strcpy(gc.cvt_buf, str);
}
static void
staticfn void
convert_line(char *in_line, char *out_line)
{
char *c, *cc;
@@ -416,7 +416,7 @@ convert_line(char *in_line, char *out_line)
return;
}
static void
staticfn void
deliver_by_pline(const char *str)
{
char in_line[BUFSZ], out_line[BUFSZ];
@@ -432,7 +432,7 @@ deliver_by_pline(const char *str)
}
}
static void
staticfn void
deliver_by_window(const char *msg, int how)
{
char in_line[BUFSZ], out_line[BUFSZ];
@@ -452,7 +452,7 @@ deliver_by_window(const char *msg, int how)
destroy_nhwindow(datawin);
}
static boolean
staticfn boolean
skip_pager(boolean common UNUSED)
{
/* WIZKIT: suppress plot feedback if starting with quest artifact */
@@ -461,7 +461,7 @@ skip_pager(boolean common UNUSED)
return FALSE;
}
static boolean
staticfn boolean
com_pager_core(
const char *section,
const char *msgid,