mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
Mark line_break and put_chars static
This commit is contained in:
parent
65016cdca4
commit
ca3fc4f7ac
@ -126,8 +126,8 @@ static struct renderer_context renderer_context;
|
|||||||
|
|
||||||
|
|
||||||
/* Prototypes */
|
/* Prototypes */
|
||||||
void line_break(struct html_context *);
|
static void line_break(struct html_context *);
|
||||||
void put_chars(struct html_context *, unsigned char *, int);
|
static void put_chars(struct html_context *, unsigned char *, int);
|
||||||
|
|
||||||
#define X(x_) (part->box.x + (x_))
|
#define X(x_) (part->box.x + (x_))
|
||||||
#define Y(y_) (part->box.y + (y_))
|
#define Y(y_) (part->box.y + (y_))
|
||||||
@ -1261,7 +1261,7 @@ html_has_non_space_chars(unsigned char *chars, int charslen)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
static void
|
||||||
put_chars(struct html_context *html_context, unsigned char *chars, int charslen)
|
put_chars(struct html_context *html_context, unsigned char *chars, int charslen)
|
||||||
{
|
{
|
||||||
enum link_state link_state;
|
enum link_state link_state;
|
||||||
@ -1362,7 +1362,7 @@ put_chars(struct html_context *html_context, unsigned char *chars, int charslen)
|
|||||||
|
|
||||||
#undef overlap
|
#undef overlap
|
||||||
|
|
||||||
void
|
static void
|
||||||
line_break(struct html_context *html_context)
|
line_break(struct html_context *html_context)
|
||||||
{
|
{
|
||||||
struct part *part;
|
struct part *part;
|
||||||
|
Loading…
Reference in New Issue
Block a user