mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-24 21:26:38 +01:00
4 lines
158 B
Plaintext
4 lines
158 B
Plaintext
// Please tell me if there already is a macro for that
|
|
#define LISTFIRST(L) (length(L) ? L[1] : null)
|
|
#define LISTLAST(L) (length(L) ? L[length(L)] : null)
|