summaryrefslogtreecommitdiffstats
path: root/fgetc.c
diff options
context:
space:
mode:
authorpgen <p.gen.progs@gmail.com>2023-09-10 00:35:48 +0200
committerpgen <p.gen.progs@gmail.com>2023-09-11 14:15:32 +0200
commit36881ac8835674bf5ce0112f1c5bfa7d1b1e3f27 (patch)
tree97e706c87e9189c1896b5117578f112f8ce7484d /fgetc.c
parentb4e826f3ce669758eb2847d5d7eb65ee2c4755d0 (diff)
Reformatting source code
Diffstat (limited to 'fgetc.c')
-rw-r--r--fgetc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fgetc.c b/fgetc.c
index cf755d8..44e8eaa 100644
--- a/fgetc.c
+++ b/fgetc.c
@@ -26,7 +26,7 @@ static long next_buffer_pos = 0; /* Next free position in the getc buffer. */
/* Gets a (possibly pushed-back) character. */
/* ======================================== */
int
-my_fgetc(FILE * input)
+my_fgetc(FILE *input)
{
int c;
@@ -51,7 +51,7 @@ my_fgetc(FILE * input)
/* Pushes character back on input. */
/* =============================== */
int
-my_ungetc(int c, FILE * input)
+my_ungetc(int c, FILE *input)
{
int rc;