(MOD) Changed returning type of Var_Delete and Array_Delete from "void" to "Status": It requires more plaination when encountering non-alive instances.

(MOD) Implemented Array_Equals.

(MOD) Replaced struct member "description" from InstanceStillAlive from "Given instance was yet alive." to "Given instance was still alive.".

(MOD) Removed String_GetIdx and String_SetIdx:  Meaningless functions.

(MOD) Changed the assignment value of struct member "identity" of macro unknown, normal and error from "nameof(e)" to "e.identity".
This commit is contained in:
2024-06-28 13:32:48 +08:00
parent 9f2b44bf99
commit 8c056d1a39
9 changed files with 83 additions and 132 deletions

View File

@@ -85,7 +85,7 @@
/* Create a new UnknownStatus on the fly. */
# define unknown(e, c, v) ((Status) {\
.identity = nameof(e),\
.identity = e.identity,\
.value = v,\
.description = c,\
.characteristic = STATUS_UNKNOWN,\
@@ -95,7 +95,7 @@
/* Create a new NormalStatus on the fly. */
# define normal(e, c) ((Status) {\
.identity = nameof(e),\
.identity = e.identity,\
.value = 0,\
.description = c,\
.characteristic = STATUS_NORMAL,\
@@ -105,7 +105,7 @@
/* Create a new ErrorStatus on the fly. */
# define error(e, c) ((Status) {\
.identity = nameof(e),\
.identity = e.identity,\
.value = e.value,\
.description = c,\
.characteristic = STATUS_ERROR,\
@@ -113,7 +113,7 @@
.prev = e.prev\
})
/* Extend the Status chain by giving 'p' for "predecessor" and 'e' for "Eval-Status". */
/* Replace the prev of e with p. */
# define extend(p, e) ((Status) {\
.identity = e.identity,\
.value = p.value,\