From: Kevin Day Date: Thu, 31 Aug 2023 04:19:28 +0000 (-0500) Subject: Update: Take advantage of lucky convenience where F_okay could be bumped from 197... X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=914389acda879f8bb31d978aaec85a251c0275f6;p=fll 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! --- 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,