From 914389acda879f8bb31d978aaec85a251c0275f6 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Wed, 30 Aug 2023 23:19:28 -0500 Subject: [PATCH] Update: Take advantage of lucky convenience where F_okay could be bumped from 197 to 200 thereby matching HTTP 200 status code. I recently noticed that the F_okay is very close to being a 200 code after swapping F_none with F_okay. This was never planned but it is incredibly convenient. HTTP Status 200 code now matches FLL Status Code 200. What luck! --- level_0/f_status/c/status.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/level_0/f_status/c/status.h b/level_0/f_status/c/status.h index 3218026..3b2767f 100644 --- a/level_0/f_status/c/status.h +++ b/level_0/f_status/c/status.h @@ -201,8 +201,8 @@ extern "C" { F_signal_reserved_64, // Basic. - // Start at 197 to allow compatibility with the reserved bash return codes (keep in mind fss return codes can be larger than 255). - F_okay = 197, + // Start at 200 to allow compatibility with the reserved bash return codes (keep in mind FSS return codes can be larger than 255). + F_okay = 200, F_okay_block, F_okay_eoa, F_okay_eof, -- 1.8.3.1