mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
14 lines
179 B
C
14 lines
179 B
C
#ifndef EL__UTIL_ALIGN_H
|
|
#define EL__UTIL_ALIGN_H
|
|
|
|
enum format_align {
|
|
ALIGN_LEFT,
|
|
ALIGN_CENTER,
|
|
ALIGN_RIGHT,
|
|
ALIGN_JUSTIFY,
|
|
};
|
|
|
|
typedef unsigned char format_align_T;
|
|
|
|
#endif
|