mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:48:10 +00:00

(Don't) use this to implement short-form output in ls. I'm too tired to make a nice column formatting algorithm. I just wanted something concise when I type "ls".
12 lines
133 B
C
12 lines
133 B
C
#pragma once
|
|
|
|
enum IOCtlNumber {
|
|
TIOCGPGRP,
|
|
TIOCSPGRP,
|
|
TCGETS,
|
|
TCSETS,
|
|
TCSETSW,
|
|
TCSETSF,
|
|
TIOCGWINSZ,
|
|
};
|
|
|