mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
10 lines
115 B
C
10 lines
115 B
C
|
union U{
|
||
|
int i[8];
|
||
|
char s[80];
|
||
|
};
|
||
|
|
||
|
void format_message(char *buffer, union U *u) {
|
||
|
sprintf(buffer, u->s);
|
||
|
}
|
||
|
|