aboutsummaryrefslogtreecommitdiff
path: root/lib/libk/include/stdio.h
blob: 7a6e66329fe8ac729609e098cd3964a8cb9e4799 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#pragma once

#include <stdarg.h>

/** An object type used for streams */
typedef struct FILE {
  int id;

  /** Function that prints a character to the stream */
  void (*putc)(const struct FILE *, char);

  /** Function that prints a string to the stream */
  int (*puts)(const struct FILE *, const char *, int);

  /** Flush write buffers */
  void (*flush)(const struct FILE *);
} FILE;

/** A FILE value corresponding to stdin, the keyboard buffer */
extern FILE *stdin;
/** A FILE value corresponding to stdout, the display */
extern FILE *stdout;
/** A FILE value corresponding to stderr, the uart */
extern FILE *stderr;

/**
 * Write the formatted string to stdout
 * Supports ``%s`` (string), ``%d`` (decimal), ``%u`` (unsigned), ``%x`` (hexadecimal)
 * @return number of bytes written
 */
int printf(const char *__restrict__ format, ...);

/**
 * Write the formatted string to stream; see printf
 */
int fprintf(FILE *__restrict__ stream, const char *__restrict__ format, ...);

/**
 * Write the formatted string to stream; see printf
 */
int vfprintf(FILE *__restrict__ stream, const char *__restrict__ format, va_list ap);