aboutsummaryrefslogtreecommitdiff
path: root/sys/libfmt/internal.h
blob: 56e64c830660e91881fa77941654380597da078b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <u.h>
#include <base.h>
#include <libutf.h>
#include <libfmt.h>

typedef int (*Formatter)(fmtยทState *io);
typedef struct Verb Verb;

struct Verb
{
    int c;
    Formatter fmt;
};