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.
13 lines
225 B
13 lines
225 B
#ifndef LSKALIGN_DEFINED
|
|
#define LSKALIGN_DEFINED
|
|
|
|
enum lskalign /* kinds of para alignment */
|
|
{
|
|
lskalLeft,
|
|
lskalCentered,
|
|
lskalRight,
|
|
};
|
|
|
|
typedef enum lskalign LSKALIGN;
|
|
|
|
#endif /* !LSKALIGN_DEFINED */
|