10 lines
135 B
C
10 lines
135 B
C
|
#ifndef PROCESS_H
|
||
|
#define PROCESS_H
|
||
|
#include "types.h"
|
||
|
|
||
|
void loadlines(struct filedata *f);
|
||
|
|
||
|
char *linepad(int lc, int total);
|
||
|
|
||
|
#endif
|