20 lines
264 B
C
20 lines
264 B
C
#include <stdio.h>
|
|
#include "rifle/mu.h"
|
|
|
|
int
|
|
mu_gen_label(struct rifle_state *state, const char *name)
|
|
{
|
|
if (state == NULL || name == NULL) {
|
|
return -1;
|
|
}
|
|
|
|
fprintf(
|
|
state->out_fp,
|
|
"%s:\n",
|
|
name
|
|
);
|
|
|
|
return 0;
|
|
}
|
|
|