You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
363 B
16 lines
363 B
#ifndef FMTRES_DEFINED
|
|
#define FMTRES_DEFINED
|
|
|
|
/* used in fmtio.h and lsfd.h */
|
|
|
|
enum fmtres /* Why did the formatter return? */
|
|
{
|
|
fmtrCompletedRun, /* no problems */
|
|
fmtrExceededMargin, /* reached right margin */
|
|
fmtrTab, /* reached tab */
|
|
fmtrStopped
|
|
};
|
|
|
|
typedef enum fmtres FMTRES;
|
|
|
|
#endif /* !FMTRES_DEFINED */
|