gencpp/project/auxillary/builder.hpp

19 lines
239 B
C++
Raw Normal View History

2023-08-21 18:40:23 -07:00
#pragma once
#include "gen.hpp"
struct Builder
{
FileInfo File;
String Buffer;
static Builder open( char const* path );
void pad_lines( s32 num );
void print( Code );
void print_fmt( char const* fmt, ... );
void write();
};