* Column flags
*/
enum {
- SCOLS_FL_TRUNC = (1 << 15), /* truncate fields data if necessary */
- SCOLS_FL_TREE = (1 << 16), /* use tree "ascii art" */
- SCOLS_FL_RIGHT = (1 << 17), /* align to the right */
- SCOLS_FL_STRICTWIDTH = (1 << 18), /* don't reduce width if column is empty */
- SCOLS_FL_NOEXTREMES = (1 << 19), /* ignore extreme fields when count column width*/
+ SCOLS_FL_TRUNC = (1 << 0), /* truncate fields data if necessary */
+ SCOLS_FL_TREE = (1 << 1), /* use tree "ascii art" */
+ SCOLS_FL_RIGHT = (1 << 2), /* align to the right */
+ SCOLS_FL_STRICTWIDTH = (1 << 3), /* don't reduce width if column is empty */
+ SCOLS_FL_NOEXTREMES = (1 << 4), /* ignore extreme fields when count column width*/
};
extern struct libscols_iter *scols_new_iter(int direction);