]> Kevux Git Server - fll/commitdiff
Update: status code changes, adding "_not" in more places.
authorKevin Day <thekevinday@gmail.com>
Tue, 1 Dec 2020 02:21:57 +0000 (20:21 -0600)
committerKevin Day <thekevinday@gmail.com>
Tue, 1 Dec 2020 02:21:57 +0000 (20:21 -0600)
I am not a fan of having so many "_not".
I believe I even made efforts to reduce its usage in the past.

Having said that, there ended up being too many different cases where "_not" makes sense.
I want things to be consistent, so this commit introduces "_not" more thoroughly unless it makes sense not to.

There are also cases where I have prefixes, such as "un" in unknown.
Change this to be consistent with the "_not" logic.
This results in changes like F_unknown -> F_known_not.

Other minor cleanups exist, such as F_interrupted -> F_interrupt.

I expect down the road there will be changes where these "_not" are used in functions where the "_not" is not used.
(Example: it may be that a function returns F_number (with error bit set) on invalid number, but it may be better to now use F_number_not.)

77 files changed:
level_0/f_account/c/account.c
level_0/f_account/c/account.h
level_0/f_directory/c/directory.c
level_0/f_directory/c/directory.h
level_0/f_environment/c/environment.h
level_0/f_environment/c/private-environment.c
level_0/f_environment/c/private-environment.h
level_0/f_file/c/file.c
level_0/f_file/c/file.h
level_0/f_file/c/private-file.c
level_0/f_file/c/private-file.h
level_0/f_fss/c/fss.c
level_0/f_fss/c/fss.h
level_0/f_print/c/print.h
level_0/f_print/c/private-print.c
level_0/f_print/c/private-print.h
level_0/f_serialize/c/private-serialize.c
level_0/f_serialize/c/private-serialize.h
level_0/f_serialize/c/serialize.c
level_0/f_serialize/c/serialize.h
level_0/f_signal/c/signal.c
level_0/f_signal/c/signal.h
level_0/f_socket/c/socket.c
level_0/f_socket/c/socket.h
level_0/f_status/c/status.h
level_0/f_utf/c/utf.c
level_0/f_utf/c/utf.h
level_1/fl_conversion/c/conversion.c
level_1/fl_conversion/c/conversion.h
level_1/fl_directory/c/directory.c
level_1/fl_directory/c/private-directory.c
level_1/fl_fss/c/fss_basic.h
level_1/fl_fss/c/fss_basic_list.h
level_1/fl_fss/c/fss_embedded_list.c
level_1/fl_fss/c/fss_embedded_list.h
level_1/fl_fss/c/fss_extended.c
level_1/fl_fss/c/fss_extended.h
level_1/fl_fss/c/fss_extended_list.h
level_1/fl_fss/c/private-fss.c
level_1/fl_fss/c/private-fss.h
level_1/fl_print/c/print.h
level_1/fl_print/c/private-print.h
level_1/fl_status/c/status.c
level_1/fl_status/c/status.h
level_1/fl_string/c/string.c
level_1/fl_string/c/string.h
level_1/fl_utf/c/utf.h
level_1/fl_utf_file/c/private-utf_file.c
level_1/fl_utf_file/c/private-utf_file.h
level_1/fl_utf_file/c/utf_file.c
level_1/fl_utf_file/c/utf_file.h
level_2/fll_error/c/private-error.c
level_2/fll_execute/c/execute.c
level_2/fll_fss/c/fss_basic.h
level_2/fll_fss/c/fss_basic_list.h
level_2/fll_fss/c/fss_embedded_list.c
level_2/fll_fss/c/fss_embedded_list.h
level_2/fll_fss/c/fss_extended.c
level_2/fll_fss/c/fss_extended.h
level_2/fll_fss/c/fss_extended_list.h
level_2/fll_status/c/status.c
level_3/controller/c/private-controller.c
level_3/controller/c/private-controller.h
level_3/controller/c/private-entry.c
level_3/controller/c/private-rule.c
level_3/controller/c/private-rule.h
level_3/fake/c/private-fake.c
level_3/fake/c/private-make.c
level_3/fake/c/private-make.h
level_3/fake/c/private-print.c
level_3/fss_basic_list_write/c/private-fss_basic_list_write.c
level_3/fss_basic_write/c/private-fss_basic_write.c
level_3/fss_embedded_list_write/c/private-fss_embedded_list_write.c
level_3/fss_extended_list_write/c/private-fss_extended_list_write.c
level_3/fss_extended_write/c/private-fss_extended_write.c
level_3/fss_status_code/c/private-fss_status_code.h
level_3/status_code/c/private-status_code.h

index 2cc77e40fa1ffc584c73b707645c0b8ca9e518be..88dd2bdf8aad282f5f007210ed9697c9f29d88bd 100644 (file)
@@ -28,7 +28,7 @@ extern "C" {
       int result = getgrnam_r(name, &grp, buffer, length, &pointer);
 
       if (result) {
-        if (errno == EINTR) return F_status_set_error(F_interrupted);
+        if (errno == EINTR) return F_status_set_error(F_interrupt);
         if (errno == EIO) return F_status_set_error(F_input_output);
         if (errno == EMFILE) return F_status_set_error(F_file_descriptor_max);
         if (errno == ENFILE) return F_status_set_error(F_file_open_max);
@@ -59,7 +59,7 @@ extern "C" {
     const int result = getgrnam_r(name, &grp, buffer, length, &pointer);
 
     if (result) {
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EIO) return F_status_set_error(F_input_output);
       if (errno == EMFILE) return F_status_set_error(F_file_descriptor_max);
       if (errno == ENFILE) return F_status_set_error(F_file_open_max);
@@ -103,7 +103,7 @@ extern "C" {
       const int result = getpwnam_r(name, &password, buffer, length, &pointer);
 
       if (result) {
-        if (errno == EINTR) return F_status_set_error(F_interrupted);
+        if (errno == EINTR) return F_status_set_error(F_interrupt);
         if (errno == EIO) return F_status_set_error(F_input_output);
         if (errno == EMFILE) return F_status_set_error(F_file_descriptor_max);
         if (errno == ENFILE) return F_status_set_error(F_file_open_max);
@@ -134,7 +134,7 @@ extern "C" {
     const int result = getpwnam_r(name, &password, buffer, length, &pointer);
 
     if (result) {
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EIO) return F_status_set_error(F_input_output);
       if (errno == EMFILE) return F_status_set_error(F_file_descriptor_max);
       if (errno == ENFILE) return F_status_set_error(F_file_open_max);
index ca11ede6130ec36aaaaeb8f01f973f82df536527..2a64c8bc5f9306ce470d07dc6571bcb0c3cbc61f 100644 (file)
@@ -47,7 +47,7 @@ extern "C" {
  *   F_file_descriptor_max (with error bit) if max file descriptors was reached.
  *   F_file_open_max (with error bit) too many open files.
  *   F_input_output (with error bit) if an I/O error occurred.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_memory_not (with error bit) if out of memory.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_failure (with error bit) on any other failure.
@@ -73,7 +73,7 @@ extern "C" {
  *   F_file_descriptor_max (with error bit) if max file descriptors was reached.
  *   F_file_open_max (with error bit) too many open files.
  *   F_input_output (with error bit) if an I/O error occurred.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_memory_not (with error bit) if out of memory.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_failure (with error bit) on any other failure.
index 08a0f5c69b677a83656f8e994cbd779f514993a6..46422f57f2388d765e3474b728e62e9b718de3bb 100644 (file)
@@ -196,7 +196,7 @@ extern "C" {
       if (errno == EACCES) return F_status_set_error(F_access_denied);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
       if (errno == EFBIG || errno == EOVERFLOW) return F_status_set_error(F_number_overflow);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == ELOOP) return F_status_set_error(F_loop);
       if (errno == ENAMETOOLONG) return F_status_set_error(F_name);
@@ -235,7 +235,7 @@ extern "C" {
       if (errno == EBADF) return F_status_set_error(F_directory_descriptor);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
       if (errno == EFBIG || errno == EOVERFLOW) return F_status_set_error(F_number_overflow);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == ELOOP) return F_status_set_error(F_loop);
       if (errno == ENAMETOOLONG) return F_status_set_error(F_name);
index 22b5f652afe12e19bc6d1c8964ec6449420473ad..ffe95eff60b407e331e0095326e9a1bd2bbb0c1d 100644 (file)
@@ -265,7 +265,7 @@ extern "C" {
  *   F_failure (with error bit) if failed to read directory information.
  *   F_file_open_max (with error bit) too many open files.
  *   F_file_type_directory_not (with error bit) file is not a directory.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
@@ -306,7 +306,7 @@ extern "C" {
  *   F_failure (with error bit) if failed to read directory information.
  *   F_file_open_max (with error bit) too many open files.
  *   F_file_type_directory_not (with error bit) file is not a directory.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
@@ -424,7 +424,7 @@ extern "C" {
  *   F_file_open_max (with error bit) when system-wide max open files is reached.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
  *   F_filesystem_quota_reached (with error bit) quota reached of filesystem is out of space.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
@@ -466,7 +466,7 @@ extern "C" {
  *   F_file_open_max (with error bit) when system-wide max open files is reached.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
  *   F_filesystem_quota_reached (with error bit) quota reached of filesystem is out of space.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
index e0e7a65236c15363bad9e2328af2b91eeb4d5bc3..80ca2bd4b2b10454038943bb885bd75b7e04389e 100644 (file)
@@ -138,7 +138,7 @@ extern "C" {
  *
  * @return
  *   F_none on success.
- *   F_invalid (with error bit) if name is an invalid string.
+ *   F_valid_not (with error bit) if name is an invalid string.
  *   F_memory_not (with error bit) on out of memory.
  *   F_failure (with error bit) on any other error.
  *
@@ -167,7 +167,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not if name.used is 0.
- *   F_invalid (with error bit) if name is an invalid string.
+ *   F_valid_not (with error bit) if name is an invalid string.
  *   F_memory_not (with error bit) on out of memory.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_failure (with error bit) on any other error.
@@ -188,7 +188,7 @@ extern "C" {
  *
  * @return
  *   F_none on success.
- *   F_invalid (with error bit) if name is an invalid string.
+ *   F_valid_not (with error bit) if name is an invalid string.
  *   F_memory_not (with error bit) on out of memory.
  *   F_failure (with error bit) on any other error.
  *
@@ -208,7 +208,7 @@ extern "C" {
  *
  * @return
  *   F_none on success.
- *   F_invalid (with error bit) if name is an invalid string.
+ *   F_valid_not (with error bit) if name is an invalid string.
  *   F_memory_not (with error bit) on out of memory.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_failure (with error bit) on any other error.
index bbef7a2ae7418e3a9bb01b42aa9aa80f27c8bf11..41fc282a91af18594a14d6f4e3fa92fdfcf6787b 100644 (file)
@@ -43,7 +43,7 @@ extern "C" {
 
     if (setenv(name, value, replace) < 0) {
       if (errno == EINVAL) {
-        return F_status_set_error(F_invalid);
+        return F_status_set_error(F_valid_not);
       }
       else if (errno == ENOMEM) {
         return F_status_set_error(F_memory_not);
@@ -61,7 +61,7 @@ extern "C" {
 
     if (unsetenv(name) < 0) {
       if (errno == EINVAL) {
-        return F_status_set_error(F_invalid);
+        return F_status_set_error(F_valid_not);
       }
       else if (errno == ENOMEM) {
         return F_status_set_error(F_memory_not);
index c1a302d319a5121a82f8c784f581ba4766a134d5..dd8eb65154846560baa257b8681ad493d1a8cd2c 100644 (file)
@@ -57,7 +57,7 @@ extern "C" {
  *
  * @return
  *   F_none on success.
- *   F_invalid (with error bit) if name is an invalid string.
+ *   F_valid_not (with error bit) if name is an invalid string.
  *   F_memory_not (with error bit) on out of memory.
  *   F_failure (with error bit) on any other error.
  *
@@ -77,7 +77,7 @@ extern "C" {
  *
  * @return
  *   F_none on success.
- *   F_invalid (with error bit) if name is an invalid string.
+ *   F_valid_not (with error bit) if name is an invalid string.
  *   F_memory_not (with error bit) on out of memory.
  *   F_failure (with error bit) on any other error.
  *
index e324057fa73a325014efb78126a9de87e3c4cbbc..8cb1db1bdda7a02107456ca7d2e442ff11c5d5da 100644 (file)
@@ -79,7 +79,7 @@ extern "C" {
       return F_none;
     }
 
-    return F_unsupported;
+    return F_supported_not;
   }
 #endif // _di_f_file_clone_
 
@@ -194,7 +194,7 @@ extern "C" {
       return F_none;
     }
 
-    return F_unsupported;
+    return F_supported_not;
   }
 #endif // _di_f_file_copy_
 
@@ -226,7 +226,7 @@ extern "C" {
 
 
     if (!f_macro_file_type_is_fifo(mode) && !f_macro_file_type_is_character(mode) && !f_macro_file_type_is_block(mode)) {
-      return F_status_set_error(F_unsupported);
+      return F_status_set_error(F_supported_not);
     }
 
     const dev_t device = makedev(major, minor);
@@ -242,7 +242,7 @@ extern "C" {
     #endif // _di_level_0_parameter_checking_
 
     if (!f_macro_file_type_is_fifo(mode) && !f_macro_file_type_is_character(mode) && !f_macro_file_type_is_block(mode)) {
-      return F_status_set_error(F_unsupported);
+      return F_status_set_error(F_supported_not);
     }
 
     const dev_t device = makedev(major, minor);
@@ -278,7 +278,7 @@ extern "C" {
     #endif // _di_level_0_parameter_checking_
 
     if (!f_macro_file_type_is_fifo(mode) && !f_macro_file_type_is_character(mode) && !f_macro_file_type_is_block(mode)) {
-      return F_status_set_error(F_unsupported);
+      return F_status_set_error(F_supported_not);
     }
 
     return private_f_file_create_node(path, mode, device);
@@ -292,7 +292,7 @@ extern "C" {
     #endif // _di_level_0_parameter_checking_
 
     if (!f_macro_file_type_is_fifo(mode) && !f_macro_file_type_is_character(mode) && !f_macro_file_type_is_block(mode)) {
-      return F_status_set_error(F_unsupported);
+      return F_status_set_error(F_supported_not);
     }
 
     return private_f_file_create_node_at(at_id, path, mode, device);
@@ -470,7 +470,7 @@ extern "C" {
       if (errno == ENAMETOOLONG) return F_status_set_error(F_name);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
       if (errno == EFBIG || errno == EOVERFLOW) return F_status_set_error(F_number_overflow);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == ELOOP) return F_status_set_error(F_loop);
       if (errno == ENOENT) return F_status_set_error(F_file_found_not);
@@ -502,7 +502,7 @@ extern "C" {
       if (errno == ENAMETOOLONG) return F_status_set_error(F_name);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
       if (errno == EFBIG || errno == EOVERFLOW) return F_status_set_error(F_number_overflow);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == ELOOP) return F_status_set_error(F_loop);
       if (errno == ENOENT) return F_status_set_error(F_file_found_not);
@@ -1473,7 +1473,7 @@ extern "C" {
         if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block);
         if (errno == EBADF) return F_status_set_error(F_file_descriptor);
         if (errno == EFAULT) return F_status_set_error(F_buffer);
-        if (errno == EINTR) return F_status_set_error(F_interrupted);
+        if (errno == EINTR) return F_status_set_error(F_interrupt);
         if (errno == EINVAL) return F_status_set_error(F_parameter);
         if (errno == EIO) return F_status_set_error(F_input_output);
         if (errno == EISDIR) return F_status_set_error(F_file_type_directory);
@@ -1525,7 +1525,7 @@ extern "C" {
       if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block);
       if (errno == EBADF) return F_status_set_error(F_file_descriptor);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == EIO) return F_status_set_error(F_input_output);
       if (errno == EISDIR) return F_status_set_error(F_file_type_directory);
@@ -1579,7 +1579,7 @@ extern "C" {
         if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block);
         if (errno == EBADF) return F_status_set_error(F_file_descriptor);
         if (errno == EFAULT) return F_status_set_error(F_buffer);
-        if (errno == EINTR) return F_status_set_error(F_interrupted);
+        if (errno == EINTR) return F_status_set_error(F_interrupt);
         if (errno == EINVAL) return F_status_set_error(F_parameter);
         if (errno == EIO) return F_status_set_error(F_input_output);
         if (errno == EISDIR) return F_status_set_error(F_file_type_directory);
@@ -1762,7 +1762,7 @@ extern "C" {
     if (*seeked < 0) {
       if (errno == EBADF) return F_status_set_error(F_file_descriptor);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
-      if (errno == ENXIO) return F_status_set_error(F_bound_out);
+      if (errno == ENXIO) return F_status_set_error(F_bound_not);
       if (errno == EOVERFLOW) return F_status_set_error(F_number_overflow);
       if (errno == ESPIPE) return F_status_set_error(F_file_type_pipe);
 
@@ -1883,7 +1883,7 @@ extern "C" {
       if (errno == EBADF) return F_status_set_error(F_file_descriptor);
       if (errno == EDEADLK) return F_status_set_error(F_deadlock);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == EMFILE) return F_status_set_error(F_file_descriptor_max);
       if (errno == ENOLCK) return F_status_set_error(F_lock);
@@ -1923,7 +1923,7 @@ extern "C" {
       if (errno == EBADF) return F_status_set_error(F_file_descriptor);
       if (errno == EDEADLK) return F_status_set_error(F_deadlock);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == EMFILE) return F_status_set_error(F_file_descriptor_max);
       if (errno == ENOLCK) return F_status_set_error(F_lock);
@@ -1959,7 +1959,7 @@ extern "C" {
       if (errno == ENAMETOOLONG) return F_status_set_error(F_name);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
       if (errno == EFBIG || errno == EOVERFLOW) return F_status_set_error(F_number_overflow);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == ELOOP) return F_status_set_error(F_loop);
       if (errno == ENFILE) return F_status_set_error(F_file_open_max);
@@ -1971,7 +1971,7 @@ extern "C" {
       if (errno == EROFS) return F_status_set_error(F_read_only);
       if (errno == ETXTBSY) return F_status_set_error(F_busy);
       if (errno == EISDIR) return F_status_set_error(F_directory);
-      if (errno == EOPNOTSUPP) return F_status_set_error(F_unsupported);
+      if (errno == EOPNOTSUPP) return F_status_set_error(F_supported_not);
 
       return F_status_set_error(F_failure);
     }
@@ -2018,7 +2018,7 @@ extern "C" {
         if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block);
         if (errno == EBADF) return F_status_set_error(F_file_descriptor);
         if (errno == EFAULT) return F_status_set_error(F_buffer);
-        if (errno == EINTR) return F_status_set_error(F_interrupted);
+        if (errno == EINTR) return F_status_set_error(F_interrupt);
         if (errno == EINVAL) return F_status_set_error(F_parameter);
         if (errno == EIO) return F_status_set_error(F_input_output);
         if (errno == EISDIR) return F_status_set_error(F_file_type_directory);
@@ -2065,7 +2065,7 @@ extern "C" {
       if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block);
       if (errno == EBADF) return F_status_set_error(F_file_descriptor);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == EIO) return F_status_set_error(F_input_output);
       if (errno == EISDIR) return F_status_set_error(F_file_type_directory);
@@ -2120,7 +2120,7 @@ extern "C" {
         if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block);
         if (errno == EBADF) return F_status_set_error(F_file_descriptor);
         if (errno == EFAULT) return F_status_set_error(F_buffer);
-        if (errno == EINTR) return F_status_set_error(F_interrupted);
+        if (errno == EINTR) return F_status_set_error(F_interrupt);
         if (errno == EINVAL) return F_status_set_error(F_parameter);
         if (errno == EIO) return F_status_set_error(F_input_output);
         if (errno == EISDIR) return F_status_set_error(F_file_type_directory);
@@ -2165,7 +2165,7 @@ extern "C" {
       if (errno == EBADF) return F_status_set_error(F_file_descriptor);
       if (errno == EDEADLK) return F_status_set_error(F_deadlock);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == EMFILE) return F_status_set_error(F_file_descriptor_max);
       if (errno == ENOLCK) return F_status_set_error(F_lock);
index 5ea30c594fe57051506405b2fd84247266ca3716..962db2a370818c58e3bb75503bce5fad48f88fab 100644 (file)
@@ -106,7 +106,7 @@ extern "C" {
  *   F_file_read (with error bit) on file read error.
  *   F_file_write (with error bit) on file write error.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
@@ -115,7 +115,7 @@ extern "C" {
  *   F_prohibited (with error bit) if filesystem does not allow for making changes.
  *   F_read_only (with error bit) if file is read-only.
  *   F_space_not (with error bit) if filesystem is out of space (or filesystem quota is reached).
- *   F_unsupported if copying a given type of file is unsupported.
+ *   F_supported_not if copying a given type of file is unsupported.
  *   F_failure (with error bit) for any other error.
  */
 #ifndef _di_f_file_clone_
@@ -139,7 +139,7 @@ extern "C" {
  *   F_file_synchronize (with error bit) on flush failure.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_space_not (with error bit) if filesystem is out of space (or filesystem quota is reached).
  *
  * @see fclose()
@@ -184,7 +184,7 @@ extern "C" {
  *   F_file_read (with error bit) on file read error.
  *   F_file_write (with error bit) on file write error.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
@@ -193,7 +193,7 @@ extern "C" {
  *   F_prohibited (with error bit) if filesystem does not allow for making changes.
  *   F_read_only (with error bit) if file is read-only.
  *   F_space_not (with error bit) if filesystem is out of space (or filesystem quota is reached).
- *   F_unsupported if copying a given type of file is unsupported.
+ *   F_supported_not if copying a given type of file is unsupported.
  *   F_failure (with error bit) for any other error.
  */
 #ifndef _di_f_file_copy_
@@ -221,7 +221,7 @@ extern "C" {
  *   F_file_found (with error bit) if a file was found while exclusive is TRUE.
  *   F_file_open_max (with error bit) when system-wide max open files is reached.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
@@ -261,7 +261,7 @@ extern "C" {
  *   F_file_found (with error bit) if a file was found while exclusive is TRUE.
  *   F_file_open_max (with error bit) when system-wide max open files is reached.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
@@ -306,7 +306,7 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_prohibited (with error bit) if filesystem does not allow for making changes.
  *   F_space_not (with error bit) if filesystem is out of space (or filesystem quota is reached).
- *   F_unsupported (with error bit) for unsupported file types.
+ *   F_supported_not (with error bit) for unsupported file types.
  *   F_failure (with error bit) for any other error.
  *
  * @see makedev()
@@ -347,7 +347,7 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_prohibited (with error bit) if filesystem does not allow for making changes.
  *   F_space_not (with error bit) if filesystem is out of space (or filesystem quota is reached).
- *   F_unsupported (with error bit) for unsupported file types.
+ *   F_supported_not (with error bit) for unsupported file types.
  *   F_failure (with error bit) for any other error.
  *
  * @see makedev()
@@ -377,7 +377,7 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_prohibited (with error bit) if filesystem does not allow for making changes.
  *   F_space_not (with error bit) if filesystem is out of space (or filesystem quota is reached).
- *   F_unsupported (with error bit) for unsupported file types.
+ *   F_supported_not (with error bit) for unsupported file types.
  *   F_failure (with error bit) for any other error.
  *
  * @see mkfifo()
@@ -409,7 +409,7 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_prohibited (with error bit) if filesystem does not allow for making changes.
  *   F_space_not (with error bit) if filesystem is out of space (or filesystem quota is reached).
- *   F_unsupported (with error bit) for unsupported file types.
+ *   F_supported_not (with error bit) for unsupported file types.
  *   F_failure (with error bit) for any other error.
  *
  * @see mkfifoat()
@@ -441,7 +441,7 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_prohibited (with error bit) if filesystem does not allow for making changes.
  *   F_space_not (with error bit) if filesystem is out of space (or filesystem quota is reached).
- *   F_unsupported (with error bit) for unsupported file types.
+ *   F_supported_not (with error bit) for unsupported file types.
  *   F_failure (with error bit) for any other error.
  *
  * @see mknod()
@@ -477,7 +477,7 @@ extern "C" {
  *   F_prohibited (with error bit) if filesystem does not allow for making changes.
  *   F_space_not (with error bit) if filesystem is out of space (or filesystem quota is reached).
  *   F_failure (with error bit) for any other error.
- *   F_unsupported (with error bit) for unsupported file types.
+ *   F_supported_not (with error bit) for unsupported file types.
  *
  * @see mknodat()
  */
@@ -572,7 +572,7 @@ extern "C" {
  *   F_input_output (with error bit) on I/O error.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_space_not (with error bit) if filesystem is out of space (or filesystem quota is reached).
- *   F_unsupported (with error bit) if the file system or file type does not support flushing.
+ *   F_supported_not (with error bit) if the file system or file type does not support flushing.
  *   F_failure (with error bit) on any other failure.
  *
  * @see fsync()
@@ -688,7 +688,7 @@ extern "C" {
  *   F_file_found_not (with error bit) if a parent path in point does not exist or is a broken symlink.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
  *   F_directory (with error bit) if a supposed directory in path is not actually a directory.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
@@ -727,7 +727,7 @@ extern "C" {
  *   F_file_found (with error bit) if a file aleady exists at the path.
  *   F_file_found_not (with error bit) if a parent path in point does not exist or is a broken symlink.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
@@ -762,7 +762,7 @@ extern "C" {
  *   F_file_found (with error bit) if a file aleady exists at the path.
  *   F_file_found_not (with error bit) if a parent path in point does not exist or is a broken symlink.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
@@ -804,7 +804,7 @@ extern "C" {
  *   F_file_found (with error bit) if a file aleady exists at the path.
  *   F_file_found_not (with error bit) if a parent path in point does not exist or is a broken symlink.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
@@ -1217,7 +1217,7 @@ extern "C" {
  *   F_file_open_max (with error bit) when system-wide max open files is reached.
  *   F_file_type_not_directory (with error bit) if F_NOTIFY was specified and file.id is not a directory.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name is too long.
@@ -1225,7 +1225,7 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_prohibited (with error bit) if filesystem does not allow for making changes.
  *   F_read_only (with error bit) if file is read-only.
- *   F_unsupported (with error bit) fo unsupported file types.
+ *   F_supported_not (with error bit) fo unsupported file types.
  *   F_failure (with error bit) for any other error.
  *
  * @see open()
@@ -1309,7 +1309,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see read()
@@ -1339,7 +1339,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see read()
@@ -1375,7 +1375,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see read()
@@ -1633,7 +1633,7 @@ extern "C" {
  *
  * @return
  *   F_none on success.
- *   F_bound_out (with error bit) if SEEK_DATA or SEEK_HOLE is specified as whence and offset is beyond the end of file.
+ *   F_bound_not (with error bit) if SEEK_DATA or SEEK_HOLE is specified as whence and offset is beyond the end of file.
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_pipe (with error bit) if file descriptor represents a pipe, socket, or FIFO.
  *   F_number_overflow (with error bit) on overflow for offset.
@@ -1833,7 +1833,7 @@ extern "C" {
  *   F_file_type_not_directory (with error bit) if F_NOTIFY was specified and file.id is not a directory.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_lock (with error bit) if failed to lock, such as lock table is full or too many open segments.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_prohibited (with error bit) if filesystem does not allow for making changes.
@@ -1867,7 +1867,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if file descriptor is invalid.
  *   F_file_descriptor_max (with error bit) if max file descriptors was reached.
  *   F_file_type_not_directory (with error bit) if F_NOTIFY was specified and file.id is not a directory.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_lock (with error bit) if failed to lock, such as lock table is full or too many open segments.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_prohibited (with error bit) if filesystem does not allow for making changes.
@@ -1904,7 +1904,7 @@ extern "C" {
  *   F_file_open_max (with error bit) when system-wide max open files is reached.
  *   F_file_type_not_directory (with error bit) if F_NOTIFY was specified and file.id is not a directory.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name is too long.
@@ -1912,7 +1912,7 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_prohibited (with error bit) if filesystem does not allow for making changes.
  *   F_read_only (with error bit) if file is read-only.
- *   F_unsupported (with error bit) fo unsupported file types.
+ *   F_supported_not (with error bit) fo unsupported file types.
  *   F_failure (with error bit) for any other error.
  *
  * @see fileno()
@@ -1945,7 +1945,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see fread()
@@ -1978,7 +1978,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see fread()
@@ -2017,7 +2017,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see fread()
@@ -2054,7 +2054,7 @@ extern "C" {
  *   F_file_open_max (with error bit) when system-wide max open files is reached.
  *   F_file_type_not_directory (with error bit) if F_NOTIFY was specified and file.id is not a directory.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name is too long.
@@ -2062,7 +2062,7 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_prohibited (with error bit) if filesystem does not allow for making changes.
  *   F_read_only (with error bit) if file is read-only.
- *   F_unsupported (with error bit) fo unsupported file types.
+ *   F_supported_not (with error bit) fo unsupported file types.
  *   F_failure (with error bit) for any other error.
  *
  * @see fileno()
@@ -2096,7 +2096,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see fwrite()
@@ -2131,7 +2131,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see fwrite()
@@ -2167,7 +2167,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see fwrite()
@@ -2202,7 +2202,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see fwrite()
@@ -2236,7 +2236,7 @@ extern "C" {
  *   F_file_open_max (with error bit) when system-wide max open files is reached.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
  *   F_filesystem_quota_reached (with error bit) quota reached of filesystem is out of space.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
@@ -2278,7 +2278,7 @@ extern "C" {
  *   F_file_open_max (with error bit) when system-wide max open files is reached.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
  *   F_filesystem_quota_reached (with error bit) quota reached of filesystem is out of space.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
@@ -2373,7 +2373,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see write()
@@ -2405,7 +2405,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see write()
@@ -2438,7 +2438,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see write()
@@ -2470,7 +2470,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see write()
index f705c7bdc9c8bcd5c4dff355bbbbe93f428367e5..2ecb8a7beaa70051f6bcb24f14ad0006d120df34 100644 (file)
@@ -14,7 +14,7 @@ extern "C" {
 
     if (close(*id) < 0) {
       if (errno == EBADF) return F_status_set_error(F_directory_descriptor);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EIO) return F_status_set_error(F_input_output);
       if (errno == ENOSPC) return F_status_set_error(F_space_not);
       if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block);
@@ -313,7 +313,7 @@ extern "C" {
       if (errno == EBADF) return F_status_set_error(F_file_descriptor);
       if (errno == EIO) return F_status_set_error(F_input_output);
       if (errno == ENOSPC) return F_status_set_error(F_space_not);
-      if (errno == EROFS) return F_status_set_error(F_unsupported);
+      if (errno == EROFS) return F_status_set_error(F_supported_not);
       if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block);
 
       return F_status_set_error(F_failure);
@@ -333,7 +333,7 @@ extern "C" {
       if (errno == ENAMETOOLONG) return F_status_set_error(F_name);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
       if (errno == EFBIG || errno == EOVERFLOW) return F_status_set_error(F_number_overflow);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == ELOOP) return F_status_set_error(F_loop);
       if (errno == ENOENT) return F_status_set_error(F_file_found_not);
@@ -361,7 +361,7 @@ extern "C" {
       if (errno == ENAMETOOLONG) return F_status_set_error(F_name);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
       if (errno == EFBIG || errno == EOVERFLOW) return F_status_set_error(F_number_overflow);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == ELOOP) return F_status_set_error(F_loop);
       if (errno == ENOENT) return F_status_set_error(F_file_found_not);
@@ -515,7 +515,7 @@ extern "C" {
       if (errno == ENAMETOOLONG) return F_status_set_error(F_name);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
       if (errno == EFBIG || errno == EOVERFLOW) return F_status_set_error(F_number_overflow);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == ELOOP) return F_status_set_error(F_loop);
       if (errno == ENFILE) return F_status_set_error(F_file_open_max);
@@ -527,7 +527,7 @@ extern "C" {
       if (errno == EROFS) return F_status_set_error(F_read_only);
       if (errno == ETXTBSY) return F_status_set_error(F_busy);
       if (errno == EISDIR) return F_status_set_error(F_directory);
-      if (errno == EOPNOTSUPP) return F_status_set_error(F_unsupported);
+      if (errno == EOPNOTSUPP) return F_status_set_error(F_supported_not);
 
       return F_status_set_error(F_failure);
     }
@@ -553,7 +553,7 @@ extern "C" {
       if (errno == ENAMETOOLONG) return F_status_set_error(F_name);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
       if (errno == EFBIG || errno == EOVERFLOW) return F_status_set_error(F_number_overflow);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == ELOOP) return F_status_set_error(F_loop);
       if (errno == ENFILE) return F_status_set_error(F_file_open_max);
@@ -566,7 +566,7 @@ extern "C" {
       if (errno == EROFS) return F_status_set_error(F_read_only);
       if (errno == ETXTBSY) return F_status_set_error(F_busy);
       if (errno == EISDIR) return F_status_set_error(F_directory);
-      if (errno == EOPNOTSUPP) return F_status_set_error(F_unsupported);
+      if (errno == EOPNOTSUPP) return F_status_set_error(F_supported_not);
 
       return F_status_set_error(F_failure);
     }
@@ -780,7 +780,7 @@ extern "C" {
         if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block);
         if (errno == EBADF) return F_status_set_error(F_file_descriptor);
         if (errno == EFAULT) return F_status_set_error(F_buffer);
-        if (errno == EINTR) return F_status_set_error(F_interrupted);
+        if (errno == EINTR) return F_status_set_error(F_interrupt);
         if (errno == EINVAL) return F_status_set_error(F_parameter);
         if (errno == EIO) return F_status_set_error(F_input_output);
         if (errno == EISDIR) return F_status_set_error(F_file_type_directory);
@@ -829,7 +829,7 @@ extern "C" {
       if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block);
       if (errno == EBADF) return F_status_set_error(F_file_descriptor);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == EIO) return F_status_set_error(F_input_output);
       if (errno == EISDIR) return F_status_set_error(F_file_type_directory);
index 5697e26babb70f61e03e1067032ff0c07741bcc2..1f0bc91e24c8e056c3f35240817a12f696ef18b0 100644 (file)
@@ -30,7 +30,7 @@ extern "C" {
  *   F_file_synchronize (with error bit) on flush failure.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_space_not (with error bit) if filesystem is out of space (or filesystem quota is reached).
  *
@@ -71,7 +71,7 @@ extern "C" {
  *   F_file_read (with error bit) on file read error.
  *   F_file_write (with error bit) on file write error.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
@@ -80,7 +80,7 @@ extern "C" {
  *   F_prohibited (with error bit) if filesystem does not allow for making changes.
  *   F_read_only (with error bit) if file is read-only.
  *   F_space_not (with error bit) if filesystem is out of space (or filesystem quota is reached).
- *   F_unsupported if copying a given type of file is unsupported.
+ *   F_supported_not if copying a given type of file is unsupported.
  *   F_failure (with error bit) for any other error.
  *
  * @see f_file_copy()
@@ -115,7 +115,7 @@ extern "C" {
  *   F_file_found (with error bit) if a file was found while exclusive is TRUE.
  *   F_file_open_max (with error bit) when system-wide max open files is reached.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
@@ -160,7 +160,7 @@ extern "C" {
  *   F_file_found (with error bit) if a file was found while exclusive is TRUE.
  *   F_file_open_max (with error bit) when system-wide max open files is reached.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
@@ -270,7 +270,7 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_prohibited (with error bit) if filesystem does not allow for making changes.
  *   F_space_not (with error bit) if filesystem is out of space (or filesystem quota is reached).
- *   F_unsupported (with error bit) for unsupported file types.
+ *   F_supported_not (with error bit) for unsupported file types.
  *   F_failure (with error bit) for any other error.
  *
  * @see f_file_create_fifo()
@@ -305,7 +305,7 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_prohibited (with error bit) if filesystem does not allow for making changes.
  *   F_space_not (with error bit) if filesystem is out of space (or filesystem quota is reached).
- *   F_unsupported (with error bit) for unsupported file types.
+ *   F_supported_not (with error bit) for unsupported file types.
  *   F_failure (with error bit) for any other error.
  *
  * @see f_file_create_fifo_at()
@@ -343,7 +343,7 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_prohibited (with error bit) if filesystem does not allow for making changes.
  *   F_space_not (with error bit) if filesystem is out of space (or filesystem quota is reached).
- *   F_unsupported (with error bit) for unsupported file types.
+ *   F_supported_not (with error bit) for unsupported file types.
  *   F_failure (with error bit) for any other error.
  *
  * @see f_file_copy()
@@ -386,7 +386,7 @@ extern "C" {
  *   F_prohibited (with error bit) if filesystem does not allow for making changes.
  *   F_space_not (with error bit) if filesystem is out of space (or filesystem quota is reached).
  *   F_failure (with error bit) for any other error.
- *   F_unsupported (with error bit) for unsupported file types.
+ *   F_supported_not (with error bit) for unsupported file types.
  *
  * @see f_file_copy_at()
  * @see f_file_create_device_at()
@@ -411,7 +411,7 @@ extern "C" {
  *   F_input_output (with error bit) on I/O error.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_space_not (with error bit) if filesystem is out of space (or filesystem quota is reached).
- *   F_unsupported (with error bit) if the file system or file type does not support flushing.
+ *   F_supported_not (with error bit) if the file system or file type does not support flushing.
  *   F_failure (with error bit) on any other failure.
  *
  * @see f_file_close()
@@ -441,7 +441,7 @@ extern "C" {
  *   F_file_found_not (with error bit) if a parent path in point does not exist or is a broken symlink.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
  *   F_directory (with error bit) if a supposed directory in path is not actually a directory.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
@@ -480,7 +480,7 @@ extern "C" {
  *   F_file_found (with error bit) if a file aleady exists at the path.
  *   F_file_found_not (with error bit) if a parent path in point does not exist or is a broken symlink.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_loop (with error bit) on loop error.
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
@@ -906,7 +906,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see f_file_stream_write()
@@ -943,7 +943,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see f_file_write()
index 1b422a6e6a5c881e7908a6f25af12ed159423a42..584b1e005fe356011d54470ec57ec4db7c11aa83 100644 (file)
@@ -316,15 +316,15 @@ extern "C" {
       else if (width == 1) {
 
         // Do not operate on UTF-8 fragments that are not the first byte of the character.
-        return F_status_set_error(F_incomplete_utf);
+        return F_status_set_error(F_complete_not_utf);
       }
       else {
         if (range->start + width >= buffer.used) {
-          return F_status_set_error(F_incomplete_utf_eos);
+          return F_status_set_error(F_complete_not_utf_eos);
         }
 
         if (range->start + width > range->stop) {
-          return F_status_set_error(F_incomplete_utf_stop);
+          return F_status_set_error(F_complete_not_utf_stop);
         }
       }
 
@@ -445,15 +445,15 @@ extern "C" {
       else if (width == 1) {
 
         // Do not operate on UTF-8 fragments that are not the first byte of the character.
-        return F_status_set_error(F_incomplete_utf);
+        return F_status_set_error(F_complete_not_utf);
       }
       else {
         if (range->start + width >= buffer.used) {
-          return F_status_set_error(F_incomplete_utf_eos);
+          return F_status_set_error(F_complete_not_utf_eos);
         }
 
         if (range->start + width > range->stop) {
-          return F_status_set_error(F_incomplete_utf_stop);
+          return F_status_set_error(F_complete_not_utf_stop);
         }
       }
 
index 263a951b2e3da111f157ba4982fc72db3184a517..8fe185a68a5ad88456f93512f323aa0461311a85 100644 (file)
@@ -270,9 +270,9 @@ extern "C" {
  *   F_none_eol on success and EOL was reached.
  *   F_none_eos on success and EOS was reached.
  *   F_none_stop on success and stop point was reached.
- *   F_incomplete_utf (with error bit) if an incomplete UTF-8 fragment was found.
- *   F_incomplete_utf_eos (with error bit) if unable to get entire UTF-8 sequence due to EOS.
- *   F_incomplete_utf_stop (with error bit) if unable to get entire UTF-8 sequence due to stop point reached.
+ *   F_complete_not_utf (with error bit) if an incomplete UTF-8 fragment was found.
+ *   F_complete_not_utf_eos (with error bit) if unable to get entire UTF-8 sequence due to EOS.
+ *   F_complete_not_utf_stop (with error bit) if unable to get entire UTF-8 sequence due to stop point reached.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  *   Errors (with error bit) from: f_utf_is_control().
@@ -304,9 +304,9 @@ extern "C" {
  *   F_none_eol on success and EOL was reached.
  *   F_none_eos on success and EOS was reached.
  *   F_none_stop on success and stop point was reached.
- *   F_incomplete_utf (with error bit) if an incomplete UTF-8 fragment was found.
- *   F_incomplete_utf_eos (with error bit) if unable to get entire UTF-8 sequence due to EOS.
- *   F_incomplete_utf_stop (with error bit) if unable to get entire UTF-8 sequence due to stop point reached.
+ *   F_complete_not_utf (with error bit) if an incomplete UTF-8 fragment was found.
+ *   F_complete_not_utf_eos (with error bit) if unable to get entire UTF-8 sequence due to EOS.
+ *   F_complete_not_utf_stop (with error bit) if unable to get entire UTF-8 sequence due to stop point reached.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  *   Errors (with error bit) from: f_utf_is_graph().
index 95c0c6868207865962f5c4b71b269aa0085549ce..993434bd97cee015943163f5bbcf3132522ce278 100644 (file)
@@ -217,7 +217,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see write()
@@ -247,7 +247,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see write()
@@ -279,7 +279,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see write()
@@ -317,7 +317,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see write()
@@ -353,7 +353,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see write()
@@ -391,7 +391,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see write()
index 54e6b6ddfa19cb9a8d00f1e5a76a1519707fc977..f3e41a72d4fa41cf0b324db3eb22d622573605bb 100644 (file)
@@ -62,7 +62,7 @@ extern "C" {
           if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block);
           if (errno == EBADF) return F_status_set_error(F_file_descriptor);
           if (errno == EFAULT) return F_status_set_error(F_buffer);
-          if (errno == EINTR) return F_status_set_error(F_interrupted);
+          if (errno == EINTR) return F_status_set_error(F_interrupt);
           if (errno == EINVAL) return F_status_set_error(F_parameter);
           if (errno == EIO) return F_status_set_error(F_input_output);
           if (errno == EISDIR) return F_status_set_error(F_file_type_directory);
@@ -80,7 +80,7 @@ extern "C" {
         if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block);
         if (errno == EBADF) return F_status_set_error(F_file_descriptor);
         if (errno == EFAULT) return F_status_set_error(F_buffer);
-        if (errno == EINTR) return F_status_set_error(F_interrupted);
+        if (errno == EINTR) return F_status_set_error(F_interrupt);
         if (errno == EINVAL) return F_status_set_error(F_parameter);
         if (errno == EIO) return F_status_set_error(F_input_output);
         if (errno == EISDIR) return F_status_set_error(F_file_type_directory);
@@ -119,7 +119,7 @@ extern "C" {
           if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block);
           if (errno == EBADF) return F_status_set_error(F_file_descriptor);
           if (errno == EFAULT) return F_status_set_error(F_buffer);
-          if (errno == EINTR) return F_status_set_error(F_interrupted);
+          if (errno == EINTR) return F_status_set_error(F_interrupt);
           if (errno == EINVAL) return F_status_set_error(F_parameter);
           if (errno == EIO) return F_status_set_error(F_input_output);
           if (errno == EISDIR) return F_status_set_error(F_file_type_directory);
@@ -137,7 +137,7 @@ extern "C" {
         if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block);
         if (errno == EBADF) return F_status_set_error(F_file_descriptor);
         if (errno == EFAULT) return F_status_set_error(F_buffer);
-        if (errno == EINTR) return F_status_set_error(F_interrupted);
+        if (errno == EINTR) return F_status_set_error(F_interrupt);
         if (errno == EINVAL) return F_status_set_error(F_parameter);
         if (errno == EIO) return F_status_set_error(F_input_output);
         if (errno == EISDIR) return F_status_set_error(F_file_type_directory);
index 410670242eb80866105ee2c8453407fc64cee2ca..6ea2a3c4d5399879979d3ec43f76b871cab06ed1 100644 (file)
@@ -93,7 +93,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see f_print_to()
@@ -130,7 +130,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see f_print_to_except()
index 3ca68334d40840b9f8628b312b6ac22e019b7890..436d57ca11408cb2fba88d9327b0fea759224e5e 100644 (file)
@@ -46,7 +46,7 @@ extern "C" {
         return F_none_eos;
       }
 
-      if (i + width > serialize.used) return F_status_set_error(F_incomplete_utf_eos);
+      if (i + width > serialize.used) return F_status_set_error(F_complete_not_utf_eos);
     } // for
 
     return F_data_not_eos;
index 3a9fb215ab2647b2560969951ead99196dc90677..3b15f23cae9fa8f561e90244a7fd0b0ea030eefb 100644 (file)
@@ -31,7 +31,7 @@ extern "C" {
  *   F_none on success.
  *   F_none_eos on success at end of string.
  *   F_data_not_eos if end of string reached before index was reached.
- *   F_incomplete_utf_eos (with error bit) if end of string is reached before a complete UTF-8 character can be processed.
+ *   F_complete_not_utf_eos (with error bit) if end of string is reached before a complete UTF-8 character can be processed.
  *   F_parameter (with error bit) if a parameter is invalid.
  */
 #if !defined(_di_f_serialize_un_simple_find_) || !defined(_di_f_serialize_un_simple_get_)
index b1ef864ec6bebbc4d757d436edc7f787d5d9f0ed..05847bed8f10c100c8b890ccc7411f86b57e4122 100644 (file)
@@ -82,13 +82,13 @@ extern "C" {
         }
 
         if (i + width > serialize.used) {
-          return F_status_set_error(F_incomplete_utf_eos);
+          return F_status_set_error(F_complete_not_utf_eos);
         }
 
         start = i + width;
       }
       else if (i + width > serialize.used) {
-        return F_status_set_error(F_incomplete_utf_eos);
+        return F_status_set_error(F_complete_not_utf_eos);
       }
 
       i += width;
@@ -137,13 +137,13 @@ extern "C" {
         locations->used++;
 
         if (i + width > serialize.used) {
-          return F_status_set_error(F_incomplete_utf_eos);
+          return F_status_set_error(F_complete_not_utf_eos);
         }
 
         start = i + width;
       }
       else if (i + width > serialize.used) {
-        return F_status_set_error(F_incomplete_utf_eos);
+        return F_status_set_error(F_complete_not_utf_eos);
       }
     } // for
 
index 47f288065bf9a79da7d45d857f0cc542209fbf42..77e7596a43ca52675f392c32b81d5a29a7aabc87 100644 (file)
@@ -70,7 +70,7 @@ extern "C" {
  *
  * @return
  *   F_none on success.
- *   F_incomplete_utf_eos if end of sting is reached before a complete UTF-8 character can be processed.
+ *   F_complete_not_utf_eos if end of sting is reached before a complete UTF-8 character can be processed.
  *   F_array_too_large (with error bit) if a buffer would exceed maximum length.
  *   F_memory_reallocation (with error bit) on memory reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
@@ -96,7 +96,7 @@ extern "C" {
  *
  * @return
  *   F_none on success.
- *   F_incomplete_utf_eos if end of sting is reached before a complete UTF-8 character can be processed.
+ *   F_complete_not_utf_eos if end of sting is reached before a complete UTF-8 character can be processed.
  *   F_array_too_large (with error bit) if a buffer would exceed memory max length.
  *   F_memory_reallocation (with error bit) on memory reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
@@ -126,7 +126,7 @@ extern "C" {
  *   F_none on success.
  *   F_none_eos on success at end of string.
  *   F_data_not_eos if end of string reached before index was reached.
- *   F_incomplete_utf_eos (with error bit) if end of string is reached before a complete UTF-8 character can be processed.
+ *   F_complete_not_utf_eos (with error bit) if end of string is reached before a complete UTF-8 character can be processed.
  *   F_parameter (with error bit) if a parameter is invalid.
  */
 #ifndef _di_f_serialize_un_simple_find_
@@ -154,7 +154,7 @@ extern "C" {
  *   F_none on success.
  *   F_none_eos on success at end of string.
  *   F_data_not_eos if end of string reached before index was reached (dynamic->used is set to 0).
- *   F_incomplete_utf_eos (with error bit) if end of string is reached before a complete UTF-8 character can be processed.
+ *   F_complete_not_utf_eos (with error bit) if end of string is reached before a complete UTF-8 character can be processed.
  *   F_memory_reallocation (with error bit) on memory reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
  */
index cbf85394e743c14f0576db53639d6d9fa40a602a..4aa77a6c41ff2a36abb06a22650c7a2935573900 100644 (file)
@@ -17,7 +17,7 @@ extern "C" {
     if (close(signal->id) < 0) {
       if (errno == EBADF) return F_status_set_error(F_descriptor);
       if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EIO) return F_status_set_error(F_input_output);
       if (errno == ENOSPC) return F_status_set_error(F_parameter);
 
@@ -71,7 +71,7 @@ extern "C" {
 
     if (result < 0) {
       if (errno == EFAULT) return F_status_set_error(F_buffer);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == ENOMEM) return F_status_set_error(F_memory_not);
 
@@ -84,7 +84,7 @@ extern "C" {
         if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block);
         if (errno == EBADF) return F_status_set_error(F_descriptor);
         if (errno == EFAULT) return F_status_set_error(F_buffer);
-        if (errno == EINTR) return F_status_set_error(F_interrupted);
+        if (errno == EINTR) return F_status_set_error(F_interrupt);
         if (errno == EINVAL) return F_status_set_error(F_parameter);
         if (errno == EIO) return F_status_set_error(F_input_output);
         if (errno == EISDIR) return F_status_set_error(F_file_type_directory);
index d50a539f57adea009ecf0f8321d9d9a6bb6c2291..bba3a682415504ed1863b20e8aa69a88d1ffc88b 100644 (file)
@@ -42,7 +42,7 @@ extern "C" {
  *   F_descriptor (with error bit) if id is an invalid descriptor.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
  *   F_input_output (with error bit) if an I/O error occurred.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_failure (with error bit) for any other error.
  *
@@ -89,7 +89,7 @@ extern "C" {
  *   F_block (with error bit) if file descriptor is set to non-block and the read would result in a blocking operation.
  *   F_buffer (with error bit) if the buffer is invalid.
  *   F_descriptor (with error bit) if the signal descriptor is invalid.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_memory_not (with error bit) on out of memory.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_input_output (with error bit) on I/O error.
index 089e250ae919640784ef56a243049c06e36600af..b6661d7ba7a0c394c71e19417984822494a0a543 100644 (file)
@@ -15,7 +15,7 @@ extern "C"{
     if (bind(id, (struct sockaddr *) address, sizeof(struct sockaddr_un)) < 0) {
       if (errno == EACCES) return F_status_set_error(F_access_denied);
       if (errno == EADDRINUSE) return F_status_set_error(F_busy_address);
-      if (errno == EADDRNOTAVAIL) return F_status_set_error(F_unavailable_address);
+      if (errno == EADDRNOTAVAIL) return F_status_set_error(F_available_not_address);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
       if (errno == EINVAL) return F_status_set_error(F_busy_socket);
       if (errno == ELOOP) return F_status_set_error(F_loop);
@@ -39,7 +39,7 @@ extern "C"{
       if (errno == EADDRINUSE) return F_status_set_error(F_busy_address);
       if (errno == EBADF) return F_status_set_error(F_file_descriptor);
       if (errno == ENOTSOCK) return F_status_set_error(F_descriptor);
-      if (errno == EOPNOTSUPP) return F_status_set_error(F_unsupported);
+      if (errno == EOPNOTSUPP) return F_status_set_error(F_supported_not);
 
       return F_status_set_error(F_failure);
     }
@@ -60,14 +60,14 @@ extern "C"{
         result = shutdown(id, action);
       }
       else {
-        return F_status_set_error(F_unsupported);
+        return F_status_set_error(F_supported_not);
       }
     }
 
     if (result < 0) {
       if (errno == EBADF) return F_status_set_error(F_file_descriptor);
       if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_value);
       if (errno == EIO) return F_status_set_error(F_input_output);
       if (errno == ENOTCONN) return F_connected_not;
index f5c32d1736171e0ebd45c87ac06f974fbf4df025..636184384487fe8c0cc1764aa6dbe10a74228f83 100644 (file)
@@ -54,7 +54,7 @@ extern "C"{
  *   F_memory_not (with error bit) if out of memory.
  *   F_name (with error bit) on path name error.
  *   F_string_too_large (with error bit) if string is too large to store in the buffer.
- *   F_unavailable_address (with error bit) if address is unavailable (is non-existent or not local).
+ *   F_available_not_address (with error bit) if address is unavailable (is non-existent or not local).
  *   F_failure (with error bit) for any other error.
  *
  * @see bind()
@@ -77,7 +77,7 @@ extern "C"{
  *   F_busy_address (with error bit) if address is already in use (therefore unavailable).
  *   F_descriptor (with error bit) if the id is not a socket descriptor.
  *   F_file_descriptor (with error bit) if id is an invalid descriptor.
- *   F_unsupported (with error bit) if this socket does not support the listen() operation.
+ *   F_supported_not (with error bit) if this socket does not support the listen() operation.
  *   F_failure (with error bit) for any other error.
  *
  * @see listen()
@@ -103,10 +103,10 @@ extern "C"{
  *   F_file_descriptor (with error bit) if id is an invalid descriptor.
  *   F_filesystem_quota_block (with error bit) if filesystem's disk blocks or inodes are exhausted.
  *   F_input_output (with error bit) if an I/O error occurred.
- *   F_interrupted (with error bit) when program received an interrupt signal, halting operation.
+ *   F_interrupt (with error bit) when program received an interrupt signal, halting operation.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_space_not (with error bit) if filesystem is out of space (or filesystem quota is reached).
- *   F_unsupported (with error bit) if this socket does not support the listen() operation.
+ *   F_supported_not (with error bit) if this socket does not support the listen() operation.
  *   F_failure (with error bit) for any other error.
  *
  * @see close()
index c572a9065c824c564dcbd0a595f634390d5e6cd4..846fe5ecedc064597d47e3104f7fde39ead6877a 100644 (file)
@@ -146,122 +146,172 @@ extern "C" {
     #ifndef _di_F_status_basic_
       F_none = 197,
       F_absolute,
+      F_absolute_not,
       F_address,
+      F_address_not,
       F_block,
-      F_bound_out,
+      F_block_not,
+      F_bound,
+      F_bound_not,
+      F_complete,
+      F_complete_not,
       F_connected,
       F_connected_not,
       F_critical,
+      F_critical_not,
       F_deadlock,
+      F_deadlock_not,
       F_descriptor,
+      F_descriptor_not,
       F_device,
+      F_device_not,
       F_dummy,
+      F_dummy_not,
       F_encoding,
       F_encoding_not,
       F_eof,
+      F_eof_not,
       F_eol,
+      F_eol_not,
       F_eos,
+      F_eos_not,
       F_exist,
       F_exist_not,
       F_failure,
+      F_failure_not,
       F_fork,
+      F_fork_not,
       F_found,
       F_found_not,
-      F_incomplete,
       F_input,
+      F_input_not,
       F_input_output,
-      F_interrupted,
-      F_invalid,
-      F_output,
+      F_interrupt,
+      F_interrupt_not,
+      F_known,
+      F_known_not,
       F_link,
       F_link_not,
       F_lock,
       F_lock_not,
       F_loop,
+      F_loop_not,
       F_maybe,
-      F_memory,
-      F_memory_not,
+      F_maybe_not,
       F_mount,
+      F_mount_not,
       F_name,
+      F_name_not,
+      F_output,
+      F_output_not,
       F_parameter,
+      F_parameter_not,
       F_pipe,
+      F_pipe_not,
       F_port,
-      F_process,
-      F_process_too_many,
+      F_port_not,
       F_prohibited,
+      F_prohibited_not,
       F_range,
       F_range_not,
+      F_read,
+      F_read_not,
       F_read_only,
       F_recurse,
+      F_recurse_not,
       F_relative,
+      F_relative_not,
       F_resource,
       F_resource_not,
       F_search,
+      F_search_not,
       F_signal,
+      F_signal_not,
       F_space,
       F_space_not,
       F_stop,
+      F_stop_not,
+      F_string,
+      F_string_not,
+      F_string_too_large,
+      F_string_too_small,
+      F_supported,
+      F_supported_not,
       F_syntax,
-      F_unknown,
-      F_unsupported,
+      F_syntax_not,
       F_utf,
       F_utf_not,
+      F_valid,
+      F_valid_not,
       F_value,
       F_value_not,
       F_warn,
+      F_warn_not,
+      F_write,
+      F_write_not,
       F_write_only,
     #endif // _di_F_status_basic_
 
     #ifndef _di_F_status_array_
       F_array,
+      F_array_not,
       F_array_too_large,
       F_array_too_small,
     #endif // _di_F_status_array_
 
+    #ifndef _di_F_status_available_
+      F_available,
+      F_available_not,
+      F_available_not_address,
+      F_available_not_buffer,
+      F_available_not_device,
+      F_available_not_pipe,
+      F_available_not_port,
+      F_available_not_process,
+      F_available_not_socket,
+    #endif // _di_F_status_available_
+
     #ifndef _di_F_status_busy_
       F_busy,
       F_busy_address,
       F_busy_buffer,
       F_busy_device,
+      F_busy_not,
       F_busy_pipe,
       F_busy_port,
       F_busy_process,
       F_busy_socket,
     #endif // _di_F_status_busy_
 
-    #ifndef _di_F_status_unavailable_
-      F_unavailable,
-      F_unavailable_address,
-      F_unavailable_buffer,
-      F_unavailable_device,
-      F_unavailable_pipe,
-      F_unavailable_port,
-      F_unavailable_process,
-      F_unavailable_socket,
-    #endif // _di_F_status_unavailable_
-
     #ifndef _di_F_status_number_
       F_number,
       F_number_decimal,
+      F_number_decimal_not,
       F_number_divide_by_zero,
       F_number_negative,
+      F_number_negative_not,
+      F_number_not,
       F_number_overflow,
       F_number_positive,
+      F_number_positive_not,
       F_number_underflow,
       F_number_whole,
+      F_number_whole_not,
       F_number_zero,
+      F_number_zero_not,
     #endif // _di_F_status_number_
 
     #ifndef _di_F_status_buffer_
       F_buffer,
-      F_buffer_too_small,
+      F_buffer_not,
       F_buffer_too_large,
-      F_incomplete_utf,
-      F_incomplete_utf_block,
-      F_incomplete_utf_eof,
-      F_incomplete_utf_eol,
-      F_incomplete_utf_eos,
-      F_incomplete_utf_stop,
+      F_buffer_too_small,
+      F_complete_not_utf,
+      F_complete_not_utf_block,
+      F_complete_not_utf_eof,
+      F_complete_not_utf_eol,
+      F_complete_not_utf_eos,
+      F_complete_not_utf_stop,
       F_none_block,
       F_none_eof,
       F_none_eol,
@@ -274,34 +324,41 @@ extern "C" {
       F_data_not_eol,
       F_data_not_eos,
       F_data_not_stop,
-      F_string_too_small,
-      F_string_too_large,
-      F_unterminated,
-      F_unterminated_block,
-      F_unterminated_eof,
-      F_unterminated_eol,
-      F_unterminated_eos,
-      F_unterminated_stop,
-      F_unterminated_group,
-      F_unterminated_group_block,
-      F_unterminated_group_eof,
-      F_unterminated_group_eol,
-      F_unterminated_group_eos,
-      F_unterminated_group_stop,
-      F_unterminated_nest,
-      F_unterminated_nest_block,
-      F_unterminated_nest_eof,
-      F_unterminated_nest_eol,
-      F_unterminated_nest_eos,
-      F_unterminated_nest_stop,
+      F_terminated,
+      F_terminated_not,
+      F_terminated_not_block,
+      F_terminated_not_eof,
+      F_terminated_not_eol,
+      F_terminated_not_eos,
+      F_terminated_not_group,
+      F_terminated_not_group_block,
+      F_terminated_not_group_eof,
+      F_terminated_not_group_eol,
+      F_terminated_not_group_eos,
+      F_terminated_not_group_stop,
+      F_terminated_not_nest,
+      F_terminated_not_nest_block,
+      F_terminated_not_nest_eof,
+      F_terminated_not_nest_eol,
+      F_terminated_not_nest_eos,
+      F_terminated_not_nest_stop,
+      F_terminated_not_stop,
     #endif // _di_F_status_buffer_
 
     #ifndef _di_F_status_memory_
+      F_memory,
       F_memory_allocation,
       F_memory_deallocation,
+      F_memory_not,
       F_memory_reallocation,
     #endif // _di_F_status_memory_
 
+    #ifndef _di_F_status_process_
+      F_process,
+      F_process_not,
+      F_process_too_many,
+    #endif // _di_F_status_process_
+
     #ifndef _di_F_status_file_
       F_file,
       F_file_allocation,
@@ -314,6 +371,7 @@ extern "C" {
       F_file_flush,
       F_file_found,
       F_file_found_not,
+      F_file_not,
       F_file_open,
       F_file_opened,
       F_file_open_max,
@@ -348,6 +406,7 @@ extern "C" {
 
     #ifndef _di_F_status_filesystem_
       F_filesystem,
+      F_filesystem_not,
       F_filesystem_quota_block,
       F_filesystem_quota_reached,
     #endif // _di_F_status_filesystem_
@@ -363,6 +422,7 @@ extern "C" {
       F_directory_found_not,
       F_directory_flush,
       F_directory_link_max,
+      F_directory_not,
       F_directory_open,
       F_directory_purge,
       F_directory_read,
@@ -377,6 +437,7 @@ extern "C" {
     #ifndef _di_F_status_socket_
       F_socket,
       F_socket_client,
+      F_socket_not,
       F_socket_receive,
       F_socket_send,
       F_socket_target,
@@ -409,6 +470,7 @@ extern "C" {
       F_access_granted_write,
       F_access_group,
       F_access_mode,
+      F_access_not,
       F_access_owner,
     #endif // _di_F_status_access_
 
index 6974518eb464739e0310016af165aa7433dbc2e6..e09a2a917a74cb8d5993b3ecd236f92c81b20359 100644 (file)
@@ -22,7 +22,7 @@ extern "C" {
 
       if (width > range->start) {
         if (width > 1) {
-          return F_status_set_error(F_incomplete_utf_eos);
+          return F_status_set_error(F_complete_not_utf_eos);
         }
 
         return F_none_eos;
@@ -53,7 +53,7 @@ extern "C" {
 
       if (range->start + width > range->stop) {
         if (width > 1) {
-          return F_status_set_error(F_incomplete_utf_stop);
+          return F_status_set_error(F_complete_not_utf_stop);
         }
 
         range->start += width;
@@ -61,7 +61,7 @@ extern "C" {
       }
       else if (range->start + width >= buffer.used) {
         if (width > 1) {
-          return F_status_set_error(F_incomplete_utf_eos);
+          return F_status_set_error(F_complete_not_utf_eos);
         }
 
         range->start += width;
@@ -697,7 +697,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     return F_true;
@@ -721,7 +721,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -755,7 +755,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -789,7 +789,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -815,7 +815,7 @@ extern "C" {
     const uint8_t width = f_macro_utf_byte_width_is(*character);
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -846,7 +846,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -880,7 +880,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -911,7 +911,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -945,7 +945,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -979,7 +979,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -1029,7 +1029,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -1076,7 +1076,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -1107,7 +1107,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -1138,7 +1138,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -1199,7 +1199,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -1245,7 +1245,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -1331,7 +1331,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -1363,7 +1363,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -1395,7 +1395,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -1429,7 +1429,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -1463,7 +1463,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -1497,7 +1497,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
@@ -1539,7 +1539,7 @@ extern "C" {
     }
 
     if (width == 1) {
-      return F_status_is_error(F_incomplete_utf);
+      return F_status_is_error(F_complete_not_utf);
     }
 
     f_utf_character_t character_utf = 0;
index a108f3ffb74419ad17f178554adcb7e10dd294de..fc709568dd14635f20d2c51e590a6f04f7b74802 100644 (file)
@@ -77,7 +77,7 @@ extern "C" {
  *   F_none_stop if the stop range is reached before all steps are completed.
  *   F_none_eos if the end of buffer is reached before all steps are completed.
  *   F_data_not if buffer is empty or out of range.
- *   F_incomplete_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
  *   F_parameter (with error bit) if a parameter is invalid.
  */
 #ifndef _di_f_utf_buffer_decrement_
@@ -108,8 +108,8 @@ extern "C" {
  *   F_none_stop if the stop range is reached before all steps are completed.
  *   F_none_eos if the end of buffer is reached before all steps are completed.
  *   F_data_not if buffer is empty or out of range.
- *   F_incomplete_utf_stop (with error bit) if the stop range is reached before the complete UTF-8 character can be processed.
- *   F_incomplete_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf_stop (with error bit) if the stop range is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
  *   F_parameter (with error bit) if a parameter is invalid.
  */
 #ifndef _di_f_utf_buffer_increment_
@@ -694,7 +694,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 character.
  *   F_false if not a UTF-8 character.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_parameter (with error bit) if a parameter is invalid.
  */
 #ifndef _di_f_utf_is_
@@ -714,7 +714,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 alphabet character.
  *   F_false if not a UTF-8 alphabet character.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *
  * @see isalpha()
  */
@@ -739,7 +739,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 alphabet character.
  *   F_false if not a UTF-8 alpha-numeric character.x
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *
  * @see isalnum()
  */
@@ -762,7 +762,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 alphabet character.
  *   F_false if not a UTF-8 alpha-numeric character.x
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *
  * @see isalnum()
  */
@@ -783,7 +783,7 @@ extern "C" {
  * @return
  *   F_true if an ASCII character.
  *   F_false if not an ASCII character.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  */
 #ifndef _di_f_utf_is_ascii_
   extern f_return_status f_utf_is_ascii(const f_string_t character, const f_string_length_t width_max);
@@ -802,7 +802,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 control picture character.
  *   F_false if not a UTF-8 control picture character.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  */
 #ifndef _di_f_utf_is_combining_
   extern f_return_status f_utf_is_combining(const f_string_t character, const f_string_length_t width_max);
@@ -821,7 +821,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 control character.
  *   F_false if not a UTF-8 control character.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *
  * @see iscntrl()
  */
@@ -844,7 +844,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 control picture character.
  *   F_false if not a UTF-8 control picture character.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  */
 #ifndef _di_f_utf_is_control_picture_
   extern f_return_status f_utf_is_control_picture(const f_string_t character, const f_string_length_t width_max);
@@ -863,7 +863,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 digit character.
  *   F_false if not a UTF-8 digit character.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *
  * @see isdigit()
  */
@@ -886,7 +886,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 emoji character.
  *   F_false if not a UTF-8 emoji character.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  */
 #ifndef _di_f_utf_is_emoji_
   extern f_return_status f_utf_is_emoji(const f_string_t character, const f_string_length_t width_max);
@@ -939,7 +939,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 graph.
  *   F_false if not a UTF-8 graph.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_maybe (with error bit) if this could be a graph but width is not long enough.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
@@ -964,7 +964,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 numeric character.
  *   F_false if not a UTF-8 numeric character.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *
  * @see isdigit()
  */
@@ -985,7 +985,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 phonetic character.
  *   F_false if not a UTF-8 phonetic character.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  */
 #ifndef _di_f_utf_is_phonetic_
   extern f_return_status f_utf_is_phonetic(const f_string_t character, const f_string_length_t width_max);
@@ -1004,7 +1004,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 punctuation character.
  *   F_false if not a UTF-8 punctuation character.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  */
 #ifndef _di_f_utf_is_private_
   extern f_return_status f_utf_is_private(const f_string_t character, const f_string_length_t width_max);
@@ -1025,7 +1025,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 punctuation character.
  *   F_false if not a UTF-8 punctuation character.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  */
 #ifndef _di_f_utf_is_punctuation_
   extern f_return_status f_utf_is_punctuation(const f_string_t character, const f_string_length_t width_max);
@@ -1046,7 +1046,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 symbol character.
  *   F_false if not a UTF-8 symbol character.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  */
 #ifndef _di_f_utf_is_symbol_
   extern f_return_status f_utf_is_symbol(const f_string_t character, const f_string_length_t width_max);
@@ -1067,7 +1067,7 @@ extern "C" {
  * @return
  *   F_true if an unassigned UTF-8 character.
  *   F_false if not an unassigned UTF-8 character.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_parameter (with error bit) if a parameter is inunassigned.
  */
 #ifndef _di_f_utf_is_unassigned_
@@ -1092,7 +1092,7 @@ extern "C" {
  * @return
  *   F_true if a valid UTF-8 character.
  *   F_false if not a valid UTF-8 character.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_parameter (with error bit) if a parameter is invalid.
  */
 #ifndef _di_f_utf_is_valid_
@@ -1120,7 +1120,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 whitespace.
  *   F_false if not a UTF-8 whitespace.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_maybe (with error bit) if this could be a whitespace but width is not long enough.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
@@ -1148,7 +1148,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 whitespace.
  *   F_false if not a UTF-8 whitespace.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_maybe (with error bit) if this could be a whitespace but width is not long enough.
  *   F_parameter (with error bit) if a parameter is invalid.
  */
@@ -1171,7 +1171,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 whitespace.
  *   F_false if not a UTF-8 whitespace.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_maybe (with error bit) if this could be a whitespace but width is not long enough.
  *   F_parameter (with error bit) if a parameter is invalid.
  */
@@ -1200,7 +1200,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 word character.
  *   F_false if not a UTF-8 word character.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *
  * @see isalnum()
  */
@@ -1234,7 +1234,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 word or dash character.
  *   F_false if not a UTF-8 word or dash character.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *
  * @see isalnum()
  */
@@ -1268,7 +1268,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 word or dash character.
  *   F_false if not a UTF-8 word or dash character.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *
  * @see isalnum()
  */
@@ -1291,7 +1291,7 @@ extern "C" {
  * @return
  *   F_true if a UTF-8 whitespace.
  *   F_false if not a UTF-8 whitespace.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_maybe (with error bit) if this could be a whitespace but width is not long enough.
  *   F_parameter (with error bit) if a parameter is invalid.
  */
index 209ce0e01202326675b0ad96a340dc15f4a37f98..5f42a4444984949d008f225e202a286117e42f2f 100644 (file)
@@ -602,7 +602,7 @@ extern "C" {
 
           if (F_status_is_error(status)) {
             if (status == F_status_set_error(F_maybe)) {
-              status = F_status_set_error(F_incomplete_utf);
+              status = F_status_set_error(F_complete_not_utf);
             }
 
             return status;
@@ -754,7 +754,7 @@ extern "C" {
 
           if (F_status_is_error(status)) {
             if (status == F_status_set_error(F_maybe)) {
-              status = F_status_set_error(F_incomplete_utf);
+              status = F_status_set_error(F_complete_not_utf);
             }
 
             return status;
index 8b1d1a45bbe30dfc4a78d88772f9b4d5c1c23932..8449daf9b30235ef2bbd57fa82a470fd3fbf78ac 100644 (file)
@@ -330,7 +330,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not if string starts with a null (length is 0).
- *   F_incomplete_utf (with error bit) if an incomplete UTF-8 fragment is found.
+ *   F_complete_not_utf (with error bit) if an incomplete UTF-8 fragment is found.
  *   F_number (with error bit) if parameter is not a number.
  *   F_number_overflow (with error bit) on integer overflow.
  *   F_number_underflow (with error bit) on integer underflow.
@@ -373,7 +373,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not if string starts with a null (length is 0).
- *   F_incomplete_utf (with error bit) if an incomplete UTF-8 fragment is found.
+ *   F_complete_not_utf (with error bit) if an incomplete UTF-8 fragment is found.
  *   F_number (with error bit) if parameter is not a number.
  *   F_number_negative (with error bit) on negative value.
  *   F_number_positive (with error bit) on positive value (has a +, such as '+1', when only '1' is valid here).
index a77ee62e0b86f032a80c99174b43147f64697949..0e0ce03ce8651b4dda0ea2fb83d06cd639621b4d 100644 (file)
@@ -340,7 +340,7 @@ extern "C" {
       if (status == F_true) continue;
 
       if (F_status_is_error(status)) {
-        if (F_status_set_fine(status) == F_incomplete_utf) continue;
+        if (F_status_set_fine(status) == F_complete_not_utf) continue;
 
         return status;
       }
@@ -368,7 +368,7 @@ extern "C" {
           if (status == F_true) continue;
 
           if (F_status_is_error(status)) {
-            if (F_status_set_fine(status) == F_incomplete_utf) continue;
+            if (F_status_set_fine(status) == F_complete_not_utf) continue;
 
             return status;
           }
index 152cd9e3aa5169c14d9c7d964557499d700935bd..286d1578e3091b4c266e60bc48d74d37baf23b5e 100644 (file)
@@ -149,7 +149,7 @@ extern "C" {
 
     f_status_t status = f_file_clone(path_source, path_destination, role, recurse.size_block, recurse.exclusive);
 
-    if (F_status_is_error(status) || status == F_unsupported) {
+    if (F_status_is_error(status) || status == F_supported_not) {
       if (status == F_status_set_error(F_memory_allocation) || status == F_status_set_error(F_memory_reallocation)) {
         return F_status_set_error(status);
       }
@@ -345,7 +345,7 @@ extern "C" {
 
     f_status_t status = f_file_copy(path_source, path_destination, mode, recurse.size_block, recurse.exclusive);
 
-    if (F_status_is_error(status) || status == F_unsupported) {
+    if (F_status_is_error(status) || status == F_supported_not) {
       if (status == F_status_set_error(F_memory_allocation) || status == F_status_set_error(F_memory_reallocation)) {
         return F_status_set_error(status);
       }
@@ -598,7 +598,7 @@ extern "C" {
           if (status == F_true) continue;
 
           if (F_status_is_error(status)) {
-            if (F_status_set_fine(status) == F_incomplete_utf) continue;
+            if (F_status_set_fine(status) == F_complete_not_utf) continue;
 
             return status;
           }
@@ -612,7 +612,7 @@ extern "C" {
                 if (status == F_true) continue;
 
                 if (F_status_is_error(status)) {
-                  if (F_status_set_fine(status) == F_incomplete_utf) continue;
+                  if (F_status_set_fine(status) == F_complete_not_utf) continue;
 
                   return status;
                 }
@@ -649,7 +649,7 @@ extern "C" {
         if (status == F_true) continue;
 
         if (F_status_is_error(status)) {
-          if (F_status_set_fine(status) == F_incomplete_utf) continue;
+          if (F_status_set_fine(status) == F_complete_not_utf) continue;
 
           return status;
         }
@@ -667,7 +667,7 @@ extern "C" {
               if (status == F_true) continue;
 
               if (F_status_is_error(status)) {
-                if (F_status_set_fine(status) == F_incomplete_utf) continue;
+                if (F_status_set_fine(status) == F_complete_not_utf) continue;
 
                 return status;
               }
@@ -701,7 +701,7 @@ extern "C" {
         if (status == F_true) continue;
 
         if (F_status_is_error(status)) {
-          if (F_status_set_fine(status) == F_incomplete_utf) continue;
+          if (F_status_set_fine(status) == F_complete_not_utf) continue;
 
           return status;
         }
@@ -717,7 +717,7 @@ extern "C" {
               if (status == F_true) continue;
 
               if (F_status_is_error(status)) {
-                if (F_status_set_fine(status) == F_incomplete_utf) continue;
+                if (F_status_set_fine(status) == F_complete_not_utf) continue;
 
                 return status;
               }
index 31fe6fe2ff902269099165be48207286dc68375b..ab4613c55469d6b0cf3b88ee24f593df38f5bec0 100644 (file)
@@ -58,8 +58,8 @@ extern "C" {
  *   F_none_stop on success after reaching stopping point (a valid object is not yet confirmed).
  *   F_data_not_eos no objects found after reaching the end of the buffer (essentially only comments are found).
  *   F_data_not_stop no data found after reaching stopping point (essentially only comments are found).
- *   F_unterminated_group_eos if EOS was reached before the a group termination was reached.
- *   F_unterminated_group_stop if stop point was reached before the a group termination was reached.
+ *   F_terminated_not_group_eos if EOS was reached before the a group termination was reached.
+ *   F_terminated_not_group_stop if stop point was reached before the a group termination was reached.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  *   Errors (with error bit) from: f_utf_buffer_increment().
@@ -98,8 +98,8 @@ extern "C" {
  *   F_none_stop on success after reaching stopping point (a valid object is not yet confirmed).
  *   F_data_not_eos no objects found after reaching the end of the buffer (essentially only comments are found).
  *   F_data_not_stop no data found after reaching stopping point (essentially only comments are found).
- *   F_unterminated_group_eos if EOS was reached before the a group termination was reached.
- *   F_unterminated_group_stop if stop point was reached before the a group termination was reached.
+ *   F_terminated_not_group_eos if EOS was reached before the a group termination was reached.
+ *   F_terminated_not_group_stop if stop point was reached before the a group termination was reached.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  *   Errors (with error bit) from: f_utf_buffer_increment().
@@ -141,7 +141,7 @@ extern "C" {
  *   F_none_stop on success after reaching the range stop.
  *   F_data_not_stop no data to write due start location being greater than stop location.
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_none_eol (with error bit) after reaching an EOL, which is not supported by the standard.
  *   F_parameter (with error bit) if a parameter is invalid.
index 3a988e023a7d196d72995b235883c78e496254d1..dfe409f7b0b69c03e043ade356c223c572b81e3c 100644 (file)
@@ -56,12 +56,12 @@ extern "C" {
  *   F_none_stop on success after reaching stopping point (a valid object is not yet confirmed).
  *   F_data_not_eos no objects found after reaching the end of the buffer (essentially only comments are found).
  *   F_data_not_stop no data found after reaching stopping point (essentially only comments are found).
- *   F_unterminated_group_eos if EOS was reached before the a group termination was reached.
- *   F_unterminated_group_stop if stop point was reached before the a group termination was reached.
+ *   F_terminated_not_group_eos if EOS was reached before the a group termination was reached.
+ *   F_terminated_not_group_stop if stop point was reached before the a group termination was reached.
  *   F_array_too_large (with error bit) if a buffer is too large.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
- *   F_incomplete_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
@@ -104,12 +104,12 @@ extern "C" {
  *   F_none_stop on success after reaching stopping point (a valid object is not yet confirmed).
  *   F_data_not_eos no objects found after reaching the end of the buffer (essentially only comments are found).
  *   F_data_not_stop no data found after reaching stopping point (essentially only comments are found).
- *   F_unterminated_group_eos if EOS was reached before the a group termination was reached.
- *   F_unterminated_group_stop if stop point was reached before the a group termination was reached.
+ *   F_terminated_not_group_eos if EOS was reached before the a group termination was reached.
+ *   F_terminated_not_group_stop if stop point was reached before the a group termination was reached.
  *   F_array_too_large (with error bit) if a buffer is too large.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
- *   F_incomplete_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
@@ -152,7 +152,7 @@ extern "C" {
  *   F_data_not_stop no data to write due start location being greater than stop location.
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
  *   F_none_stop on success after reaching stopping point .
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_none_eol (with error bit) after reaching an EOL, which is not supported by the standard.
  *   F_parameter (with error bit) if a parameter is invalid.
@@ -196,7 +196,7 @@ extern "C" {
  *   F_data_not_stop no data to write due start location being greater than stop location.
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
  *   F_none_stop on success after reaching stopping point .
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
index bbbe0ae789ba091a7e4fe79a5caa3280f4ff6c49..67aa7a1657d02818243cc30c96532e007bca2411 100644 (file)
@@ -324,7 +324,7 @@ extern "C" {
         graph_first = 0x1;
 
         if (depth > 0) {
-          fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_unterminated_nest_eos, F_unterminated_nest_stop);
+          fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_terminated_not_nest_eos, F_terminated_not_nest_stop);
         }
         else {
           fl_macro_fss_nest_return_on_overflow_delimited((buffer), (*range), (*found), positions_start, objects, F_none_eos, F_none_stop);
@@ -358,7 +358,7 @@ extern "C" {
         if (F_status_is_error(status)) break;
 
         if (depth > 0) {
-          fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_unterminated_nest_eos, F_unterminated_nest_stop);
+          fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_terminated_not_nest_eos, F_terminated_not_nest_stop);
         }
         else {
           fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_data_not_eos, F_data_not_stop);
@@ -425,7 +425,7 @@ extern "C" {
           if (F_status_is_error(status)) break;
 
           if (depth > 0) {
-            fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_unterminated_nest_eos, F_unterminated_nest_stop);
+            fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_terminated_not_nest_eos, F_terminated_not_nest_stop);
           }
           else {
             fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_data_not_eos, F_data_not_stop);
@@ -531,7 +531,7 @@ extern "C" {
         if (F_status_is_error(status)) break;
 
         if (depth > 0) {
-          fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_unterminated_nest_eos, F_unterminated_nest_stop);
+          fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_terminated_not_nest_eos, F_terminated_not_nest_stop);
         }
         else {
           fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_data_not_eos, F_data_not_stop);
@@ -602,7 +602,7 @@ extern "C" {
           if (F_status_is_error(status)) break;
 
           if (depth > 0) {
-            fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_unterminated_nest_eos, F_unterminated_nest_stop);
+            fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_terminated_not_nest_eos, F_terminated_not_nest_stop);
           }
           else {
             fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_data_not_eos, F_data_not_stop);
@@ -636,7 +636,7 @@ extern "C" {
         if (F_status_is_error(status)) break;
 
         if (depth > 0) {
-          fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_unterminated_nest_eos, F_unterminated_nest_stop);
+          fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_terminated_not_nest_eos, F_terminated_not_nest_stop);
         }
         else {
           fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_data_not_eos, F_data_not_stop);
@@ -731,7 +731,7 @@ extern "C" {
           if (F_status_is_error(status)) break;
 
           if (depth > 0) {
-            fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_unterminated_nest_eos, F_unterminated_nest_stop)
+            fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_terminated_not_nest_eos, F_terminated_not_nest_stop)
           }
           else {
             fl_macro_fss_nest_return_on_overflow((buffer), (*range), (*found), (*delimits), delimits_used, (*comments), comments_used, positions_start, objects, F_data_not_eos, F_data_not_stop)
@@ -806,17 +806,17 @@ extern "C" {
 
     if (range->start > range->stop) {
       if (!depth) {
-        return F_status_set_error(F_unterminated_stop);
+        return F_status_set_error(F_terminated_not_stop);
       }
 
-      return F_status_set_error(F_unterminated_nest_stop);
+      return F_status_set_error(F_terminated_not_nest_stop);
     }
 
     if (!depth) {
-      return F_status_set_error(F_unterminated_eos);
+      return F_status_set_error(F_terminated_not_eos);
     }
 
-    return F_status_set_error(F_unterminated_nest_eos);
+    return F_status_set_error(F_terminated_not_nest_eos);
   }
 #endif // _di_fl_fss_embedded_list_content_read_
 
index 9e6733203463fa6d222e03949186655041ba8cca..d17889269e67c698cc0da1bc02244cb9d5d83294 100644 (file)
@@ -56,12 +56,12 @@ extern "C" {
  *   F_none_stop on success after reaching stopping point (a valid object is not yet confirmed).
  *   F_data_not_eos no objects found after reaching the end of the buffer (essentially only comments are found).
  *   F_data_not_stop no data found after reaching stopping point (essentially only comments are found).
- *   F_unterminated_group_eos if EOS was reached before the a group termination was reached.
- *   F_unterminated_group_stop if stop point was reached before the a group termination was reached.
+ *   F_terminated_not_group_eos if EOS was reached before the a group termination was reached.
+ *   F_terminated_not_group_stop if stop point was reached before the a group termination was reached.
  *   F_array_too_large (with error bit) if a buffer is too large.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
- *   F_incomplete_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
@@ -108,12 +108,12 @@ extern "C" {
  *   F_none_stop on success after reaching stopping point (a valid object is not yet confirmed).
  *   F_data_not_eos no objects found after reaching the end of the buffer (essentially only comments are found).
  *   F_data_not_stop no data found after reaching stopping point (essentially only comments are found).
- *   F_unterminated_group_eos if EOS was reached before the a group termination was reached.
- *   F_unterminated_group_stop if stop point was reached before the a group termination was reached.
+ *   F_terminated_not_group_eos if EOS was reached before the a group termination was reached.
+ *   F_terminated_not_group_stop if stop point was reached before the a group termination was reached.
  *   F_array_too_large (with error bit) if a buffer is too large.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
- *   F_incomplete_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
@@ -155,7 +155,7 @@ extern "C" {
  *   F_data_not_stop no data to write due start location being greater than stop location.
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
  *   F_none_stop on success after reaching stopping point .
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_none_eol (with error bit) after reaching an EOL, which is not supported by the standard.
  *   F_parameter (with error bit) if a parameter is invalid.
@@ -203,7 +203,7 @@ extern "C" {
  *   F_data_not_stop no data to write due start location being greater than stop location.
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
  *   F_none_stop on success after reaching stopping point .
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
index 2e239dce34961032097c8660f055afc94b2c2f60..8d8bee6f9a8b0975c0305d88c43087a92192e23e 100644 (file)
@@ -114,7 +114,7 @@ extern "C" {
         content_found = 2;
         break;
       }
-      else if (status == F_unterminated_group_eos || status == F_unterminated_group_eos) {
+      else if (status == F_terminated_not_group_eos || status == F_terminated_not_group_eos) {
         if (content_found) {
           content_found = 2;
         }
index 075f6569a8e4e396eb1103d8ea62ad2255e0b338..4c6733faa4d22c3e290047933b279de2d9ba436d 100644 (file)
@@ -58,8 +58,8 @@ extern "C" {
  *   F_none_stop on success after reaching stopping point (a valid object is not yet confirmed).
  *   F_data_not_eos no objects found after reaching the end of the buffer (essentially only comments are found).
  *   F_data_not_stop no data found after reaching stopping point (essentially only comments are found).
- *   F_unterminated_group_eos if EOS was reached before the a group termination was reached.
- *   F_unterminated_group_stop if stop point was reached before the a group termination was reached.
+ *   F_terminated_not_group_eos if EOS was reached before the a group termination was reached.
+ *   F_terminated_not_group_stop if stop point was reached before the a group termination was reached.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  *   Errors (with error bit) from: f_utf_buffer_increment().
@@ -101,8 +101,8 @@ extern "C" {
  *   F_none_stop on success after reaching stopping point (a valid object is not yet confirmed).
  *   F_data_not_eos no objects found after reaching the end of the buffer (essentially only comments are found).
  *   F_data_not_stop no data found after reaching stopping point (essentially only comments are found).
- *   F_unterminated_group_eos if EOS was reached before the a group termination was reached.
- *   F_unterminated_group_stop if stop point was reached before the a group termination was reached.
+ *   F_terminated_not_group_eos if EOS was reached before the a group termination was reached.
+ *   F_terminated_not_group_stop if stop point was reached before the a group termination was reached.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  *   Errors (with error bit) from: f_utf_buffer_increment().
@@ -145,7 +145,7 @@ extern "C" {
  *   F_none_stop on success after reaching the range stop.
  *   F_data_not_stop no data to write due start location being greater than stop location.
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_none_eol (with error bit) after reaching an EOL, which is not supported by the standard.
  *   F_parameter (with error bit) if a parameter is invalid.
@@ -189,7 +189,7 @@ extern "C" {
  *   F_none_stop on success after reaching the range stop.
  *   F_data_not_stop no data to write due start location being greater than stop location.
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_none_eol (with error bit) after reaching an EOL, which is not supported by the standard.
  *   F_parameter (with error bit) if a parameter is invalid.
index 2f3d3777d3a879800df7dba0146d9f566801af41..86e2dd2bb21e092d27e4c2e0fa78885682672b9a 100644 (file)
@@ -56,12 +56,12 @@ extern "C" {
  *   F_none_stop on success after reaching stopping point (a valid object is not yet confirmed).
  *   F_data_not_eos no objects found after reaching the end of the buffer (essentially only comments are found).
  *   F_data_not_stop no data found after reaching stopping point (essentially only comments are found).
- *   F_unterminated_group_eos if EOS was reached before the a group termination was reached.
- *   F_unterminated_group_stop if stop point was reached before the a group termination was reached.
+ *   F_terminated_not_group_eos if EOS was reached before the a group termination was reached.
+ *   F_terminated_not_group_stop if stop point was reached before the a group termination was reached.
  *   F_array_too_large (with error bit) if a buffer is too large.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
- *   F_incomplete_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
@@ -106,12 +106,12 @@ extern "C" {
  *   F_none_stop on success after reaching stopping point (a valid object is not yet confirmed).
  *   F_data_not_eos no objects found after reaching the end of the buffer (essentially only comments are found).
  *   F_data_not_stop no data found after reaching stopping point (essentially only comments are found).
- *   F_unterminated_group_eos if EOS was reached before the a group termination was reached.
- *   F_unterminated_group_stop if stop point was reached before the a group termination was reached.
+ *   F_terminated_not_group_eos if EOS was reached before the a group termination was reached.
+ *   F_terminated_not_group_stop if stop point was reached before the a group termination was reached.
  *   F_array_too_large (with error bit) if a buffer is too large.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
- *   F_incomplete_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
@@ -153,7 +153,7 @@ extern "C" {
  *   F_data_not_stop no data to write due start location being greater than stop location.
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
  *   F_none_stop on success after reaching stopping point .
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_none_eol (with error bit) after reaching an EOL, which is not supported by the standard.
  *   F_parameter (with error bit) if a parameter is invalid.
@@ -201,7 +201,7 @@ extern "C" {
  *   F_data_not_stop no data to write due start location being greater than stop location.
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
  *   F_none_stop on success after reaching stopping point .
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
index 497dd45e7ecaf3a8825864fd31c71bffe5c1ec9b..ea7ab3ef4af22de3d70885ffd427dc8eee075466 100644 (file)
@@ -62,7 +62,7 @@ extern "C" {
         status = f_fss_is_space(*destination, destination_range);
 
         // when going backwards, getting incomplete UTF-8 sequences is not an error.
-        if (F_status_set_fine(status) == F_incomplete_utf) continue;
+        if (F_status_set_fine(status) == F_complete_not_utf) continue;
 
         if (F_status_is_error(status)) {
           destination->used = used_start;
@@ -160,7 +160,7 @@ extern "C" {
       status = f_fss_is_space(*destination, destination_range);
 
       // when going backwards, getting incomplete UTF-8 sequences is not an error.
-      if (F_status_set_fine(status) == F_incomplete_utf) continue;
+      if (F_status_set_fine(status) == F_complete_not_utf) continue;
 
       if (F_status_is_error(status)) {
         destination->used = used_start;
@@ -380,12 +380,12 @@ extern "C" {
 
           if (range->start >= buffer.used) {
             found->stop = buffer.used - 1;
-            return F_unterminated_group_eos;
+            return F_terminated_not_group_eos;
           }
 
           if (range->start > range->stop) {
             found->stop = range->stop;
-            return F_unterminated_group_stop;
+            return F_terminated_not_group_stop;
           }
 
           if (buffer.string[range->start] == quote_found) {
@@ -641,12 +641,12 @@ extern "C" {
 
       if (range->start >= buffer.used) {
         found->stop = buffer.used - 1;
-        return F_unterminated_group_eos;
+        return F_terminated_not_group_eos;
       }
 
       if (range->start > range->stop) {
         found->stop = range->stop;
-        return F_unterminated_group_stop;
+        return F_terminated_not_group_stop;
       }
     }
 
index 3b743ff1acafdcd0a1d027d149b282c1e9a0a933..2168987f4568cd477bc8333325a55a8b4f812b18 100644 (file)
@@ -116,12 +116,12 @@ extern "C" {
  *   F_none_stop on success after reaching stopping point (a valid object is not yet confirmed).
  *   F_data_not_eos no objects found after reaching the end of the buffer (essentially only comments are found).
  *   F_data_not_stop no data found after reaching stopping point (essentially only comments are found).
- *   F_unterminated_group_eos if EOS was reached before the a group termination was reached.
- *   F_unterminated_group_stop if stop point was reached before the a group termination was reached.
+ *   F_terminated_not_group_eos if EOS was reached before the a group termination was reached.
+ *   F_terminated_not_group_stop if stop point was reached before the a group termination was reached.
  *   F_array_too_large (with error bit) if a buffer is too large.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
- *   F_incomplete_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
@@ -170,7 +170,7 @@ extern "C" {
  *   F_none_stop on success after reaching the range stop.
  *   F_data_not_stop no data to write due start location being greater than stop location.
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_none_eol (with error bit) after reaching an EOL, which is not supported by the standard.
  *   F_parameter (with error bit) if a parameter is invalid.
index 6fbd6521e86cd65f278233f4bff89dfcb5890838..cf40cf7cccbe09d39bef04c7f95776594dfe91f5 100644 (file)
@@ -46,7 +46,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not on success but there is nothing to print.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_output (with error bit) on error when printing to output.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
@@ -78,7 +78,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not on success but there is nothing to print.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_output (with error bit) on error when printing to output.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
@@ -112,7 +112,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not on success but there is nothing to print.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_output (with error bit) on error when printing to output.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
@@ -145,7 +145,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not on success but there is nothing to print.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_output (with error bit) on error when printing to output.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
@@ -177,7 +177,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not on success but there is nothing to print.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_output (with error bit) on error when printing to output.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
@@ -211,7 +211,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not on success but there is nothing to print.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_output (with error bit) on error when printing to output.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
@@ -240,7 +240,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not on success but there is nothing to print.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_output (with error bit) on error when printing to output.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
@@ -268,7 +268,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not on success but there is nothing to print.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_output (with error bit) on error when printing to output.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
@@ -298,7 +298,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not on success but there is nothing to print.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_output (with error bit) on error when printing to output.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
@@ -327,7 +327,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not on success but there is nothing to print.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_output (with error bit) on error when printing to output.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
@@ -355,7 +355,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not on success but there is nothing to print.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_output (with error bit) on error when printing to output.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
@@ -385,7 +385,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not on success but there is nothing to print.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_output (with error bit) on error when printing to output.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
index 45edce28f25f5376207ac8dbda333907f0f1fdf3..b4ff2984193f91c2d52424e97965c3fbe0d89a37 100644 (file)
@@ -35,7 +35,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not on success but there is nothing to print.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_output (with error bit) on error when printing to output.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
@@ -70,7 +70,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not on success but there is nothing to print.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_output (with error bit) on error when printing to output.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
@@ -100,7 +100,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not on success but there is nothing to print.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_output (with error bit) on error when printing to output.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
@@ -130,7 +130,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not on success but there is nothing to print.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *   F_output (with error bit) on error when printing to output.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
index ecc8339ae263e99fcbe37f008b624401ee437a22..beb1ecf8d1aef266b2c8b2de84cdc6ce1d1d60f3 100644 (file)
@@ -221,14 +221,32 @@ extern "C" {
         case F_absolute:
           *string = FL_status_string_absolute;
           break;
+        case F_absolute_not:
+          *string = FL_status_string_absolute_not;
+          break;
         case F_address:
           *string = FL_status_string_address;
           break;
+        case F_address_not:
+          *string = FL_status_string_address_not;
+          break;
         case F_block:
           *string = FL_status_string_block;
           break;
-        case F_bound_out:
-          *string = FL_status_string_bound_out;
+        case F_block_not:
+          *string = FL_status_string_block_not;
+          break;
+        case F_bound:
+          *string = FL_status_string_bound;
+          break;
+        case F_bound_not:
+          *string = FL_status_string_bound_not;
+          break;
+        case F_complete:
+          *string = FL_status_string_complete;
+          break;
+        case F_complete_not:
+          *string = FL_status_string_complete_not;
           break;
         case F_connected:
           *string = FL_status_string_connected;
@@ -239,18 +257,33 @@ extern "C" {
         case F_critical:
           *string = FL_status_string_critical;
           break;
+        case F_critical_not:
+          *string = FL_status_string_critical_not;
+          break;
         case F_deadlock:
           *string = FL_status_string_deadlock;
           break;
+        case F_deadlock_not:
+          *string = FL_status_string_deadlock_not;
+          break;
         case F_descriptor:
           *string = FL_status_string_descriptor;
           break;
+        case F_descriptor_not:
+          *string = FL_status_string_descriptor_not;
+          break;
         case F_device:
           *string = FL_status_string_device;
           break;
+        case F_device_not:
+          *string = FL_status_string_device_not;
+          break;
         case F_dummy:
           *string = FL_status_string_dummy;
           break;
+        case F_dummy_not:
+          *string = FL_status_string_dummy_not;
+          break;
         case F_encoding:
           *string = FL_status_string_encoding;
           break;
@@ -260,12 +293,21 @@ extern "C" {
         case F_eof:
           *string = FL_status_string_eof;
           break;
+        case F_eof_not:
+          *string = FL_status_string_eof_not;
+          break;
         case F_eol:
           *string = FL_status_string_eol;
           break;
+        case F_eol_not:
+          *string = FL_status_string_eol_not;
+          break;
         case F_eos:
           *string = FL_status_string_eos;
           break;
+        case F_eos_not:
+          *string = FL_status_string_eos_not;
+          break;
         case F_exist:
           *string = FL_status_string_exist;
           break;
@@ -275,32 +317,41 @@ extern "C" {
         case F_failure:
           *string = FL_status_string_failure;
           break;
+        case F_failure_not:
+          *string = FL_status_string_failure_not;
+          break;
         case F_fork:
           *string = FL_status_string_fork;
           break;
+        case F_fork_not:
+          *string = FL_status_string_fork_not;
+          break;
         case F_found:
           *string = FL_status_string_found;
           break;
         case F_found_not:
           *string = FL_status_string_found_not;
           break;
-        case F_incomplete:
-          *string = FL_status_string_incomplete;
-          break;
         case F_input:
           *string = FL_status_string_input;
           break;
+        case F_input_not:
+          *string = FL_status_string_input_not;
+          break;
         case F_input_output:
           *string = FL_status_string_input_output;
           break;
-        case F_interrupted:
-          *string = FL_status_string_interrupted;
+        case F_interrupt:
+          *string = FL_status_string_interrupt;
           break;
-        case F_invalid:
-          *string = FL_status_string_invalid;
+        case F_interrupt_not:
+          *string = FL_status_string_interrupt_not;
           break;
-        case F_output:
-          *string = FL_status_string_output;
+        case F_valid:
+          *string = FL_status_string_valid;
+          break;
+        case F_valid_not:
+          *string = FL_status_string_valid_not;
           break;
         case F_link:
           *string = FL_status_string_link;
@@ -317,54 +368,84 @@ extern "C" {
         case F_loop:
           *string = FL_status_string_loop;
           break;
+        case F_loop_not:
+          *string = FL_status_string_loop_not;
+          break;
         case F_maybe:
           *string = FL_status_string_maybe;
           break;
-        case F_memory:
-          *string = FL_status_string_memory;
-          break;
-        case F_memory_not:
-          *string = FL_status_string_memory_out;
+        case F_maybe_not:
+          *string = FL_status_string_maybe_not;
           break;
         case F_mount:
           *string = FL_status_string_mount;
           break;
+        case F_mount_not:
+          *string = FL_status_string_mount_not;
+          break;
         case F_name:
           *string = FL_status_string_name;
           break;
+        case F_name_not:
+          *string = FL_status_string_name_not;
+          break;
+        case F_output:
+          *string = FL_status_string_output;
+          break;
+        case F_output_not:
+          *string = FL_status_string_output_not;
+          break;
         case F_parameter:
           *string = FL_status_string_parameter;
           break;
+        case F_parameter_not:
+          *string = FL_status_string_parameter_not;
+          break;
         case F_pipe:
           *string = FL_status_string_pipe;
           break;
+        case F_pipe_not:
+          *string = FL_status_string_pipe_not;
+          break;
         case F_port:
           *string = FL_status_string_port;
           break;
-        case F_process:
-          *string = FL_status_string_process;
-          break;
-        case F_process_too_many:
-          *string = FL_status_string_process_too_many;
+        case F_port_not:
+          *string = FL_status_string_port_not;
           break;
         case F_prohibited:
           *string = FL_status_string_prohibited;
           break;
+        case F_prohibited_not:
+          *string = FL_status_string_prohibited_not;
+          break;
         case F_range:
           *string = FL_status_string_range;
           break;
         case F_range_not:
           *string = FL_status_string_range_not;
           break;
+        case F_read:
+          *string = FL_status_string_read;
+          break;
+        case F_read_not:
+          *string = FL_status_string_read_not;
+          break;
         case F_read_only:
           *string = FL_status_string_read_only;
           break;
         case F_recurse:
           *string = FL_status_string_recurse;
           break;
+        case F_recurse_not:
+          *string = FL_status_string_recurse_not;
+          break;
         case F_relative:
           *string = FL_status_string_relative;
           break;
+        case F_relative_not:
+          *string = FL_status_string_relative_not;
+          break;
         case F_resource:
           *string = FL_status_string_resource;
           break;
@@ -374,9 +455,15 @@ extern "C" {
         case F_search:
           *string = FL_status_string_search;
           break;
+        case F_search_not:
+          *string = FL_status_string_search_not;
+          break;
         case F_signal:
           *string = FL_status_string_signal;
           break;
+        case F_signal_not:
+          *string = FL_status_string_signal_not;
+          break;
         case F_space:
           *string = FL_status_string_space;
           break;
@@ -386,14 +473,38 @@ extern "C" {
         case F_stop:
           *string = FL_status_string_stop;
           break;
+        case F_stop_not:
+          *string = FL_status_string_stop_not;
+          break;
+        case F_string:
+          *string = FL_status_string_string;
+          break;
+        case F_string_not:
+          *string = FL_status_string_string_not;
+          break;
+        case F_string_too_large:
+          *string = FL_status_string_string_too_large;
+          break;
+        case F_string_too_small:
+          *string = FL_status_string_string_too_small;
+          break;
         case F_syntax:
           *string = FL_status_string_syntax;
           break;
-        case F_unknown:
-          *string = FL_status_string_unknown;
+        case F_syntax_not:
+          *string = FL_status_string_syntax_not;
+          break;
+        case F_known:
+          *string = FL_status_string_known;
+          break;
+        case F_known_not:
+          *string = FL_status_string_known_not;
           break;
-        case F_unsupported:
-          *string = FL_status_string_unsupported;
+        case F_supported:
+          *string = FL_status_string_supported;
+          break;
+        case F_supported_not:
+          *string = FL_status_string_supported_not;
           break;
         case F_utf:
           *string = FL_status_string_utf;
@@ -410,6 +521,15 @@ extern "C" {
         case F_warn:
           *string = FL_status_string_warn;
           break;
+        case F_warn_not:
+          *string = FL_status_string_warn_not;
+          break;
+        case F_write:
+          *string = FL_status_string_write;
+          break;
+        case F_write_not:
+          *string = FL_status_string_write_not;
+          break;
         case F_write_only:
           *string = FL_status_string_write_only;
           break;
@@ -419,14 +539,47 @@ extern "C" {
         case F_array:
           *string = FL_status_string_array;
           break;
-        case F_array_too_small:
-          *string = FL_status_string_array_too_small;
+        case F_array_not:
+          *string = FL_status_string_array_not;
           break;
         case F_array_too_large:
           *string = FL_status_string_array_too_large;
           break;
+        case F_array_too_small:
+          *string = FL_status_string_array_too_small;
+          break;
       #endif // _di_F_status_array_
 
+      #ifndef _di_F_status_available_
+        case F_available:
+          *string = FL_status_string_available;
+          break;
+        case F_available_not:
+          *string = FL_status_string_available_not;
+          break;
+        case F_available_not_address:
+          *string = FL_status_string_available_not_address;
+          break;
+        case F_available_not_buffer:
+          *string = FL_status_string_available_not_buffer;
+          break;
+        case F_available_not_device:
+          *string = FL_status_string_available_not_device;
+          break;
+        case F_available_not_pipe:
+          *string = FL_status_string_available_not_pipe;
+          break;
+        case F_available_not_port:
+          *string = FL_status_string_available_not_port;
+          break;
+        case F_available_not_process:
+          *string = FL_status_string_available_not_process;
+          break;
+        case F_available_not_socket:
+          *string = FL_status_string_available_not_socket;
+          break;
+      #endif // _di_F_status_available_
+
       #ifndef _di_F_status_busy_
         case F_busy:
           *string = FL_status_string_busy;
@@ -440,6 +593,9 @@ extern "C" {
         case F_busy_device:
           *string = FL_status_string_busy_device;
           break;
+        case F_busy_not:
+          *string = FL_status_string_busy_not;
+          break;
         case F_busy_pipe:
           *string = FL_status_string_busy_pipe;
           break;
@@ -454,33 +610,6 @@ extern "C" {
           break;
       #endif // _di_F_status_busy_
 
-      #ifndef _di_F_status_unavailable_
-        case F_unavailable:
-          *string = FL_status_string_unavailable;
-          break;
-        case F_unavailable_address:
-          *string = FL_status_string_unavailable_address;
-          break;
-        case F_unavailable_buffer:
-          *string = FL_status_string_unavailable_buffer;
-          break;
-        case F_unavailable_device:
-          *string = FL_status_string_unavailable_device;
-          break;
-        case F_unavailable_pipe:
-          *string = FL_status_string_unavailable_pipe;
-          break;
-        case F_unavailable_port:
-          *string = FL_status_string_unavailable_port;
-          break;
-        case F_unavailable_process:
-          *string = FL_status_string_unavailable_process;
-          break;
-        case F_unavailable_socket:
-          *string = FL_status_string_unavailable_socket;
-          break;
-      #endif // _di_F_status_unavailable_
-
       #ifndef _di_F_status_number_
         case F_number:
           *string = FL_status_string_number;
@@ -488,56 +617,74 @@ extern "C" {
         case F_number_decimal:
           *string = FL_status_string_number_decimal;
           break;
+        case F_number_decimal_not:
+          *string = FL_status_string_number_decimal_not;
+          break;
         case F_number_divide_by_zero:
           *string = FL_status_string_number_divide_by_zero;
           break;
         case F_number_negative:
           *string = FL_status_string_number_negative;
           break;
+        case F_number_negative_not:
+          *string = FL_status_string_number_negative_not;
+          break;
+        case F_number_not:
+          *string = FL_status_string_number_not;
+          break;
         case F_number_overflow:
           *string = FL_status_string_number_overflow;
           break;
         case F_number_positive:
           *string = FL_status_string_number_positive;
           break;
+        case F_number_positive_not:
+          *string = FL_status_string_number_positive_not;
+          break;
         case F_number_underflow:
           *string = FL_status_string_number_underflow;
           break;
         case F_number_whole:
           *string = FL_status_string_number_whole;
           break;
+        case F_number_whole_not:
+          *string = FL_status_string_number_whole_not;
+          break;
         case F_number_zero:
           *string = FL_status_string_number_zero;
           break;
+        case F_number_zero_not:
+          *string = FL_status_string_number_zero_not;
+          break;
       #endif // _di_F_status_number_
 
       #ifndef _di_F_status_buffers_
         case F_buffer:
           *string = FL_status_string_buffer;
           break;
-        case F_buffer_too_small:
-          *string = FL_status_string_buffer_too_small;
+        case F_buffer_not:
+          *string = FL_status_string_buffer_not;
           break;
         case F_buffer_too_large:
           *string = FL_status_string_buffer_too_large;
           break;
-        case F_incomplete_utf:
-          *string = FL_status_string_incomplete_utf;
+        case F_buffer_too_small:
+          *string = FL_status_string_buffer_too_small;
           break;
-        case F_incomplete_utf_block:
-          *string = FL_status_string_incomplete_utf_block;
+        case F_complete_not_utf_block:
+          *string = FL_status_string_complete_not_utf_block;
           break;
-        case F_incomplete_utf_eof:
-          *string = FL_status_string_incomplete_utf_eof;
+        case F_complete_not_utf_eof:
+          *string = FL_status_string_complete_not_utf_eof;
           break;
-        case F_incomplete_utf_eol:
-          *string = FL_status_string_incomplete_utf_eol;
+        case F_complete_not_utf_eol:
+          *string = FL_status_string_complete_not_utf_eol;
           break;
-        case F_incomplete_utf_eos:
-          *string = FL_status_string_incomplete_utf_eos;
+        case F_complete_not_utf_eos:
+          *string = FL_status_string_complete_not_utf_eos;
           break;
-        case F_incomplete_utf_stop:
-          *string = FL_status_string_incomplete_utf_stop;
+        case F_complete_not_utf_stop:
+          *string = FL_status_string_complete_not_utf_stop;
           break;
         case F_none_block:
           *string = FL_status_string_none_block;
@@ -575,79 +722,94 @@ extern "C" {
         case F_data_not_stop:
           *string = FL_status_string_data_not_stop;
           break;
-        case F_string_too_small:
-          *string = FL_status_string_string_too_small;
+        case F_terminated:
+          *string = FL_status_string_terminated;
           break;
-        case F_string_too_large:
-          *string = FL_status_string_string_too_large;
+        case F_terminated_not:
+          *string = FL_status_string_terminated_not;
           break;
-        case F_unterminated:
-          *string = FL_status_string_unterminated;
+        case F_terminated_not_block:
+          *string = FL_status_string_terminated_not_block;
           break;
-        case F_unterminated_block:
-          *string = FL_status_string_unterminated_block;
+        case F_terminated_not_eof:
+          *string = FL_status_string_terminated_not_eof;
           break;
-        case F_unterminated_eof:
-          *string = FL_status_string_unterminated_eof;
+        case F_terminated_not_eol:
+          *string = FL_status_string_terminated_not_eol;
           break;
-        case F_unterminated_eol:
-          *string = FL_status_string_unterminated_eol;
+        case F_terminated_not_eos:
+          *string = FL_status_string_terminated_not_eos;
           break;
-        case F_unterminated_eos:
-          *string = FL_status_string_unterminated_eos;
+        case F_terminated_not_group:
+          *string = FL_status_string_terminated_not_group;
           break;
-        case F_unterminated_stop:
-          *string = FL_status_string_unterminated_stop;
+        case F_terminated_not_group_block:
+          *string = FL_status_string_terminated_not_group_block;
           break;
-        case F_unterminated_group:
-          *string = FL_status_string_unterminated_group;
+        case F_terminated_not_group_eof:
+          *string = FL_status_string_terminated_not_group_eof;
           break;
-        case F_unterminated_group_block:
-          *string = FL_status_string_unterminated_group_block;
+        case F_terminated_not_group_eol:
+          *string = FL_status_string_terminated_not_group_eol;
           break;
-        case F_unterminated_group_eof:
-          *string = FL_status_string_unterminated_group_eof;
+        case F_terminated_not_group_eos:
+          *string = FL_status_string_terminated_not_group_eos;
           break;
-        case F_unterminated_group_eol:
-          *string = FL_status_string_unterminated_group_eol;
+        case F_terminated_not_group_stop:
+          *string = FL_status_string_terminated_not_group_stop;
           break;
-        case F_unterminated_group_eos:
-          *string = FL_status_string_unterminated_group_eos;
+        case F_terminated_not_nest:
+          *string = FL_status_string_terminated_not_nest;
           break;
-        case F_unterminated_group_stop:
-          *string = FL_status_string_unterminated_group_stop;
+        case F_terminated_not_nest_block:
+          *string = FL_status_string_terminated_not_nest_block;
           break;
-        case F_unterminated_nest:
-          *string = FL_status_string_unterminated_nest;
+        case F_terminated_not_nest_eof:
+          *string = FL_status_string_terminated_not_nest_eof;
           break;
-        case F_unterminated_nest_block:
-          *string = FL_status_string_unterminated_nest_block;
+        case F_terminated_not_nest_eol:
+          *string = FL_status_string_terminated_not_nest_eol;
           break;
-        case F_unterminated_nest_eof:
-          *string = FL_status_string_unterminated_nest_eof;
+        case F_terminated_not_nest_eos:
+          *string = FL_status_string_terminated_not_nest_eos;
           break;
-        case F_unterminated_nest_eol:
-          *string = FL_status_string_unterminated_nest_eol;
+        case F_terminated_not_nest_stop:
+          *string = FL_status_string_terminated_not_nest_stop;
           break;
-        case F_unterminated_nest_eos:
-          *string = FL_status_string_unterminated_nest_eos;
-          break;
-        case F_unterminated_nest_stop:
-          *string = FL_status_string_unterminated_nest_stop;
+        case F_terminated_not_stop:
+          *string = FL_status_string_terminated_not_stop;
           break;
       #endif // _di_F_status_buffers_
 
-      #ifndef _di_F_status_allocation_
+      #ifndef _di_F_status_memory_
+        case F_memory:
+          *string = FL_status_string_memory;
+          break;
         case F_memory_allocation:
           *string = FL_status_string_memory_allocation;
           break;
         case F_memory_deallocation:
           *string = FL_status_string_memory_deallocation;
           break;
+        case F_memory_not:
+          *string = FL_status_string_memory_not;
+          break;
         case F_memory_reallocation:
           *string = FL_status_string_memory_reallocation;
           break;
-      #endif // _di_F_status_allocation_
+      #endif // _di_F_status_memory_
+
+      #ifndef _di_F_status_process_
+        case F_process:
+          *string = FL_status_string_process;
+          break;
+        case F_process_not:
+          *string = FL_status_string_process_not;
+          break;
+        case F_process_too_many:
+          *string = FL_status_string_process_too_many;
+          break;
+      #endif // _di_F_status_process_
 
       #ifndef _di_F_status_file_
         case F_file:
@@ -683,6 +845,9 @@ extern "C" {
         case F_file_found_not:
           *string = FL_status_string_file_found_not;
           break;
+        case F_file_not:
+          *string = FL_status_string_file_not;
+          break;
         case F_file_open:
           *string = FL_status_string_file_open;
           break;
@@ -776,6 +941,9 @@ extern "C" {
         case F_filesystem:
           *string = FL_status_string_filesystem;
           break;
+        case F_filesystem_not:
+          *string = FL_status_string_filesystem_not;
+          break;
         case F_filesystem_quota_block:
           *string = FL_status_string_filesystem_quota_block;
           break;
@@ -795,7 +963,7 @@ extern "C" {
           *string = FL_status_string_directory_closed;
           break;
         case F_directory_descriptor:
-          *string =FL_status_string_directory_descriptor;
+          *string = FL_status_string_directory_descriptor;
           break;
         case F_directory_empty:
           *string = FL_status_string_directory_empty;
@@ -815,6 +983,9 @@ extern "C" {
         case F_directory_link_max:
           *string = FL_status_string_directory_link_max;
           break;
+        case F_directory_not:
+          *string = FL_status_string_directory_not;
+          break;
         case F_directory_open:
           *string = FL_status_string_directory_open;
           break;
@@ -851,6 +1022,9 @@ extern "C" {
         case F_socket_client:
           *string = FL_status_string_socket_client;
           break;
+        case F_socket_not:
+          *string = FL_status_string_socket_not;
+          break;
         case F_socket_receive:
           *string = FL_status_string_socket_receive;
           break;
@@ -935,6 +1109,9 @@ extern "C" {
         case F_access_mode:
           *string = FL_status_string_access_mode;
           break;
+        case F_access_not:
+          *string = FL_status_string_access_not;
+          break;
         case F_access_owner:
           *string = FL_status_string_access_owner;
           break;
index cafe7dd8c62ce3c5e82e515fb0a868a082faf836..530594c49460cfd99d4cbc4cc061a9ed5ce21f91 100644 (file)
@@ -165,154 +165,259 @@ extern "C" {
   #ifndef _di_F_status_basic_
     #define FL_status_string_none             "F_none"
     #define FL_status_string_absolute         "F_absolute"
+    #define FL_status_string_absolute_not     "F_absolute_not"
     #define FL_status_string_address          "F_address"
+    #define FL_status_string_address_not      "F_address_not"
     #define FL_status_string_block            "F_block"
-    #define FL_status_string_bound_out        "F_bound_out"
+    #define FL_status_string_block_not        "F_block_not"
+    #define FL_status_string_bound            "F_bound"
+    #define FL_status_string_bound_not        "F_bound_not"
+    #define FL_status_string_complete         "F_complete"
+    #define FL_status_string_complete_not     "F_complete_not"
     #define FL_status_string_connected        "F_connected"
     #define FL_status_string_connected_not    "F_connected_not"
     #define FL_status_string_critical         "F_critical"
+    #define FL_status_string_critical_not     "F_critical_not"
     #define FL_status_string_deadlock         "F_deadlock"
+    #define FL_status_string_deadlock_not     "F_deadlock_not"
     #define FL_status_string_descriptor       "F_descriptor"
+    #define FL_status_string_descriptor_not   "F_descriptor_not"
     #define FL_status_string_device           "F_device"
+    #define FL_status_string_device_not       "F_device_not"
     #define FL_status_string_dummy            "F_dummy"
+    #define FL_status_string_dummy_not        "F_dummy_not"
     #define FL_status_string_encoding         "F_encoding"
     #define FL_status_string_encoding_not     "F_encoding_not"
     #define FL_status_string_eof              "F_eof"
+    #define FL_status_string_eof_not          "F_eof_not"
     #define FL_status_string_eol              "F_eol"
+    #define FL_status_string_eol_not          "F_eol_not"
     #define FL_status_string_eos              "F_eos"
+    #define FL_status_string_eos_not          "F_eos_not"
     #define FL_status_string_exist            "F_exist"
     #define FL_status_string_exist_not        "F_exist_not"
     #define FL_status_string_failure          "F_failure"
+    #define FL_status_string_failure_not      "F_failure_not"
     #define FL_status_string_fork             "F_fork"
+    #define FL_status_string_fork_not         "F_fork_not"
     #define FL_status_string_found            "F_found"
     #define FL_status_string_found_not        "F_found_not"
-    #define FL_status_string_incomplete       "F_incomplete"
     #define FL_status_string_input            "F_input"
+    #define FL_status_string_input_not        "F_input_not"
     #define FL_status_string_input_output     "F_input_output"
-    #define FL_status_string_interrupted      "F_interrupted"
-    #define FL_status_string_invalid          "F_invalid"
-    #define FL_status_string_output           "F_output"
+    #define FL_status_string_interrupt        "F_interrupt"
+    #define FL_status_string_interrupt_not    "F_interrupt_not"
+    #define FL_status_string_known            "F_known"
+    #define FL_status_string_known_not        "F_known_not"
     #define FL_status_string_link             "F_link"
     #define FL_status_string_link_not         "F_link_not"
     #define FL_status_string_lock             "F_lock"
     #define FL_status_string_lock_not         "F_lock_not"
     #define FL_status_string_loop             "F_loop"
+    #define FL_status_string_loop_not         "F_loop_not"
     #define FL_status_string_maybe            "F_maybe"
-    #define FL_status_string_memory           "F_memory"
-    #define FL_status_string_memory_out       "F_memory_not"
+    #define FL_status_string_maybe_not        "F_maybe_not"
     #define FL_status_string_mount            "F_mount"
+    #define FL_status_string_mount_not        "F_mount_not"
     #define FL_status_string_name             "F_name"
+    #define FL_status_string_name_not         "F_name_not"
+    #define FL_status_string_output           "F_output"
+    #define FL_status_string_output_not       "F_output_not"
     #define FL_status_string_parameter        "F_parameter"
+    #define FL_status_string_parameter_not    "F_parameter_not"
     #define FL_status_string_pipe             "F_pipe"
+    #define FL_status_string_pipe_not         "F_pipe_not"
     #define FL_status_string_port             "F_port"
-    #define FL_status_string_process          "F_process"
-    #define FL_status_string_process_too_many "F_process_too_many"
+    #define FL_status_string_port_not         "F_port_not"
     #define FL_status_string_prohibited       "F_prohibited"
+    #define FL_status_string_prohibited_not   "F_prohibited_not"
     #define FL_status_string_range            "F_range"
     #define FL_status_string_range_not        "F_range_not"
+    #define FL_status_string_read             "F_read"
+    #define FL_status_string_read_not         "F_read_not"
     #define FL_status_string_read_only        "F_read_only"
     #define FL_status_string_recurse          "F_recurse"
+    #define FL_status_string_recurse_not      "F_recurse_not"
     #define FL_status_string_relative         "F_relative"
+    #define FL_status_string_relative_not     "F_relative_not"
     #define FL_status_string_resource         "F_resource"
     #define FL_status_string_resource_not     "F_resource_not"
     #define FL_status_string_search           "F_search"
+    #define FL_status_string_search_not       "F_search_not"
     #define FL_status_string_signal           "F_signal"
+    #define FL_status_string_signal_not       "F_signal_not"
     #define FL_status_string_space            "F_space"
     #define FL_status_string_space_not        "F_space_not"
     #define FL_status_string_stop             "F_stop"
+    #define FL_status_string_stop_not         "F_stop_not"
+    #define FL_status_string_string           "F_string"
+    #define FL_status_string_string_not       "F_string_not"
+    #define FL_status_string_string_too_large "F_string_too_large"
+    #define FL_status_string_string_too_small "F_string_too_small"
     #define FL_status_string_syntax           "F_syntax"
-    #define FL_status_string_unknown          "F_unknown"
-    #define FL_status_string_unsupported      "F_unsupported"
+    #define FL_status_string_syntax_not       "F_syntax_not"
+    #define FL_status_string_supported        "F_supported"
+    #define FL_status_string_supported_not    "F_supported_not"
     #define FL_status_string_utf              "F_utf"
     #define FL_status_string_utf_not          "F_utf_not"
+    #define FL_status_string_valid            "F_valid"
+    #define FL_status_string_valid_not        "F_valid_not"
     #define FL_status_string_value            "F_value"
     #define FL_status_string_value_not        "F_value_not"
     #define FL_status_string_warn             "F_warn"
+    #define FL_status_string_warn_not         "F_warn_not"
+    #define FL_status_string_write            "F_write"
+    #define FL_status_string_write_not        "F_write_not"
     #define FL_status_string_write_only       "F_write_only"
 
     #define FL_status_string_none_length             6
     #define FL_status_string_absolute_length         10
+    #define FL_status_string_absolute_not_length     14
     #define FL_status_string_address_length          9
+    #define FL_status_string_address_not_length      13
     #define FL_status_string_block_length            7
-    #define FL_status_string_bound_out_length        11
+    #define FL_status_string_block_not_length        11
+    #define FL_status_string_bound_length            7
+    #define FL_status_string_bound_not_length        11
+    #define FL_status_string_complete_length         10
+    #define FL_status_string_complete_not_length     14
     #define FL_status_string_connected_length        11
     #define FL_status_string_connected_not_length    15
     #define FL_status_string_critical_length         10
+    #define FL_status_string_critical_not_length     14
     #define FL_status_string_deadlock_length         10
+    #define FL_status_string_deadlock_not_length     14
     #define FL_status_string_descriptor_length       12
+    #define FL_status_string_descriptor_not_length   16
     #define FL_status_string_device_length           8
+    #define FL_status_string_device_not_length       12
     #define FL_status_string_dummy_length            7
+    #define FL_status_string_dummy_not_length        11
     #define FL_status_string_encoding_length         10
     #define FL_status_string_encoding_not_length     14
     #define FL_status_string_eof_length              5
+    #define FL_status_string_eof_not_length          9
     #define FL_status_string_eol_length              5
+    #define FL_status_string_eol_not_length          9
     #define FL_status_string_eos_length              5
+    #define FL_status_string_eos_not_length          9
     #define FL_status_string_exist_length            7
     #define FL_status_string_exist_not_length        11
     #define FL_status_string_failure_length          9
+    #define FL_status_string_failure_not_length      13
     #define FL_status_string_fork_length             6
+    #define FL_status_string_fork_not_length         10
     #define FL_status_string_found_length            7
     #define FL_status_string_found_not_length        11
-    #define FL_status_string_incomplete_length       12
     #define FL_status_string_input_length            7
+    #define FL_status_string_input_not_length        11
     #define FL_status_string_input_output_length     14
-    #define FL_status_string_interrupted_length      13
-    #define FL_status_string_invalid_length          9
-    #define FL_status_string_output_length           8
+    #define FL_status_string_interrupt_length        11
+    #define FL_status_string_interrupt_not_length    15
+    #define FL_status_string_known_length            7
+    #define FL_status_string_known_not_length        11
     #define FL_status_string_link_length             6
     #define FL_status_string_link_not_length         10
     #define FL_status_string_lock_length             6
     #define FL_status_string_lock_not_length         10
     #define FL_status_string_loop_length             6
+    #define FL_status_string_loop_not_length         10
     #define FL_status_string_maybe_length            7
-    #define FL_status_string_memory_length           8
-    #define FL_status_string_memory_out_length       12
+    #define FL_status_string_maybe_not_length        11
     #define FL_status_string_mount_length            7
+    #define FL_status_string_mount_not_length        11
     #define FL_status_string_name_length             6
+    #define FL_status_string_name_not_length         10
+    #define FL_status_string_output_length           8
+    #define FL_status_string_output_not_length       12
     #define FL_status_string_parameter_length        11
+    #define FL_status_string_parameter_not_length    15
     #define FL_status_string_pipe_length             6
+    #define FL_status_string_pipe_not_length         10
     #define FL_status_string_port_length             6
-    #define FL_status_string_process_length          9
-    #define FL_status_string_process_too_many_length 18
+    #define FL_status_string_port_not_length         10
     #define FL_status_string_prohibited_length       12
+    #define FL_status_string_prohibited_not_length   16
     #define FL_status_string_range_length            7
     #define FL_status_string_range_not_length        11
+    #define FL_status_string_read_length             6
+    #define FL_status_string_read_not_length         10
     #define FL_status_string_read_only_length        11
     #define FL_status_string_recurse_length          9
+    #define FL_status_string_recurse_not_length      13
     #define FL_status_string_relative_length         10
+    #define FL_status_string_relative_not_length     14
     #define FL_status_string_resource_length         10
     #define FL_status_string_resource_not_length     14
     #define FL_status_string_search_length           8
+    #define FL_status_string_search_not_length       12
     #define FL_status_string_signal_length           8
+    #define FL_status_string_signal_not_length       12
     #define FL_status_string_space_length            7
     #define FL_status_string_space_not_length        11
     #define FL_status_string_stop_length             6
+    #define FL_status_string_stop_not_length         10
+    #define FL_status_string_string_length           8
+    #define FL_status_string_string_not_length       12
+    #define FL_status_string_string_too_large_length 18
+    #define FL_status_string_string_too_small_length 18
+    #define FL_status_string_supported_length        11
+    #define FL_status_string_supported_not_length    15
     #define FL_status_string_syntax_length           8
-    #define FL_status_string_unknown_length          9
-    #define FL_status_string_unsupported_length      13
+    #define FL_status_string_syntax_not_length       12
     #define FL_status_string_utf_length              5
     #define FL_status_string_utf_not_length          9
+    #define FL_status_string_valid_length            7
+    #define FL_status_string_valid_not_length        11
     #define FL_status_string_value_length            7
     #define FL_status_string_value_not_length        11
     #define FL_status_string_warn_length             6
+    #define FL_status_string_warn_not_length         10
+    #define FL_status_string_write_length            7
+    #define FL_status_string_write_not_length        11
     #define FL_status_string_write_only_length       12
   #endif // _di_F_status_basic_
 
   #ifndef _di_F_status_array_
     #define FL_status_string_array           "F_array"
+    #define FL_status_string_array_not       "F_array_not"
     #define FL_status_string_array_too_large "F_array_too_large"
     #define FL_status_string_array_too_small "F_array_too_small"
 
     #define FL_status_string_array_length           7
+    #define FL_status_string_array_not_length       11
     #define FL_status_string_array_too_large_length 17
     #define FL_status_string_array_too_small_length 17
   #endif // _di_F_status_array_
 
+  #ifndef _di_F_status_available_
+    #define FL_status_string_available             "F_available"
+    #define FL_status_string_available_not         "F_available_not"
+    #define FL_status_string_available_not_address "F_available_not_address"
+    #define FL_status_string_available_not_buffer  "F_available_not_buffer"
+    #define FL_status_string_available_not_device  "F_available_not_device"
+    #define FL_status_string_available_not_pipe    "F_available_not_pipe"
+    #define FL_status_string_available_not_port    "F_available_not_port"
+    #define FL_status_string_available_not_process "F_available_not_process"
+    #define FL_status_string_available_not_socket  "F_available_not_socket"
+
+    #define FL_status_string_available_length             11
+    #define FL_status_string_available_not_length         15
+    #define FL_status_string_available_not_address_length 23
+    #define FL_status_string_available_not_buffer_length  22
+    #define FL_status_string_available_not_device_length  22
+    #define FL_status_string_available_not_pipe_length    20
+    #define FL_status_string_available_not_port_length    20
+    #define FL_status_string_available_not_process_length 23
+    #define FL_status_string_available_not_socket_length  22
+  #endif // _di_F_status_available_
+
   #ifndef _di_F_status_busy_
     #define FL_status_string_busy         "F_busy"
     #define FL_status_string_busy_address "F_busy_address"
     #define FL_status_string_busy_buffer  "F_busy_buffer"
     #define FL_status_string_busy_device  "F_busy_device"
+    #define FL_status_string_busy_not     "F_busy_not"
     #define FL_status_string_busy_pipe    "F_busy_pipe"
     #define FL_status_string_busy_port    "F_busy_port"
     #define FL_status_string_busy_process "F_busy_process"
@@ -322,151 +427,159 @@ extern "C" {
     #define FL_status_string_busy_address_length 14
     #define FL_status_string_busy_buffer_length  13
     #define FL_status_string_busy_device_length  13
+    #define FL_status_string_busy_not_length     10
     #define FL_status_string_busy_pipe_length    11
     #define FL_status_string_busy_port_length    11
     #define FL_status_string_busy_process_length 14
     #define FL_status_string_busy_socket_length  13
   #endif // _di_F_status_busy_
 
-  #ifndef _di_F_status_unavailable_
-    #define FL_status_string_unavailable         "F_unavailable"
-    #define FL_status_string_unavailable_address "F_unavailable_address"
-    #define FL_status_string_unavailable_buffer  "F_unavailable_buffer"
-    #define FL_status_string_unavailable_device  "F_unavailable_device"
-    #define FL_status_string_unavailable_pipe    "F_unavailable_pipe"
-    #define FL_status_string_unavailable_port    "F_unavailable_port"
-    #define FL_status_string_unavailable_process "F_unavailable_process"
-    #define FL_status_string_unavailable_socket  "F_unavailable_socket"
-
-    #define FL_status_string_unavailable_length         13
-    #define FL_status_string_unavailable_address_length 21
-    #define FL_status_string_unavailable_buffer_length  20
-    #define FL_status_string_unavailable_device_length  20
-    #define FL_status_string_unavailable_pipe_length    18
-    #define FL_status_string_unavailable_port_length    18
-    #define FL_status_string_unavailable_process_length 21
-    #define FL_status_string_unavailable_socket_length  20
-  #endif // _di_F_status_unavailable_
-
   #ifndef _di_F_status_number_
     #define FL_status_string_number                "F_number"
     #define FL_status_string_number_decimal        "F_number_decimal"
+    #define FL_status_string_number_decimal_not    "F_number_decimal_not"
     #define FL_status_string_number_divide_by_zero "F_number_divide_by_zero"
     #define FL_status_string_number_negative       "F_number_negative"
+    #define FL_status_string_number_negative_not   "F_number_negative_not"
+    #define FL_status_string_number_not            "F_number_not"
     #define FL_status_string_number_overflow       "F_number_overflow"
     #define FL_status_string_number_positive       "F_number_positive"
+    #define FL_status_string_number_positive_not   "F_number_positive_not"
     #define FL_status_string_number_underflow      "F_number_underflow"
     #define FL_status_string_number_whole          "F_number_whole"
+    #define FL_status_string_number_whole_not      "F_number_whole_not"
     #define FL_status_string_number_zero           "F_number_zero"
+    #define FL_status_string_number_zero_not       "F_number_zero_not"
 
     #define FL_status_string_number_length                8
     #define FL_status_string_number_decimal_length        16
+    #define FL_status_string_number_decimal_not_length    20
     #define FL_status_string_number_divide_by_zero_length 23
     #define FL_status_string_number_negative_length       17
+    #define FL_status_string_number_negative_not_length   21
+    #define FL_status_string_number_not_length            12
     #define FL_status_string_number_overflow_length       17
     #define FL_status_string_number_positive_length       17
+    #define FL_status_string_number_positive_not_length   21
     #define FL_status_string_number_underflow_length      18
     #define FL_status_string_number_whole_length          14
+    #define FL_status_string_number_whole_not_length      18
     #define FL_status_string_number_zero_length           13
+    #define FL_status_string_number_zero_not_length       17
   #endif // _di_F_status_number_
 
   #ifndef _di_F_status_buffer_
-    #define FL_status_string_buffer                   "F_buffer"
-    #define FL_status_string_buffer_too_small         "F_buffer_too_small"
-    #define FL_status_string_buffer_too_large         "F_buffer_too_large"
-    #define FL_status_string_incomplete_utf           "F_incomplete_utf"
-    #define FL_status_string_incomplete_utf_block     "F_incomplete_utf_block"
-    #define FL_status_string_incomplete_utf_eof       "F_incomplete_utf_eof"
-    #define FL_status_string_incomplete_utf_eol       "F_incomplete_utf_eol"
-    #define FL_status_string_incomplete_utf_eos       "F_incomplete_utf_eos"
-    #define FL_status_string_incomplete_utf_stop      "F_incomplete_utf_stop"
-    #define FL_status_string_none_block               "F_none_block"
-    #define FL_status_string_none_eof                 "F_none_eof"
-    #define FL_status_string_none_eol                 "F_none_eol"
-    #define FL_status_string_none_eos                 "F_none_eos"
-    #define FL_status_string_none_stop                "F_none_stop"
-    #define FL_status_string_data                     "F_data"
-    #define FL_status_string_data_not                 "F_data_not"
-    #define FL_status_string_data_not_block           "F_data_not_block"
-    #define FL_status_string_data_not_eof             "F_data_not_eof"
-    #define FL_status_string_data_not_eol             "F_data_not_eol"
-    #define FL_status_string_data_not_eos             "F_data_not_eos"
-    #define FL_status_string_data_not_stop            "F_data_not_stop"
-    #define FL_status_string_string_too_small         "F_string_too_small"
-    #define FL_status_string_string_too_large         "F_string_too_large"
-    #define FL_status_string_unterminated             "F_unterminated"
-    #define FL_status_string_unterminated_block       "F_unterminated_block"
-    #define FL_status_string_unterminated_eof         "F_unterminated_eof"
-    #define FL_status_string_unterminated_eol         "F_unterminated_eol"
-    #define FL_status_string_unterminated_eos         "F_unterminated_eos"
-    #define FL_status_string_unterminated_stop        "F_unterminated_stop"
-    #define FL_status_string_unterminated_group       "F_unterminated_group"
-    #define FL_status_string_unterminated_group_block "F_unterminated_group_block"
-    #define FL_status_string_unterminated_group_eof   "F_unterminated_group_eof"
-    #define FL_status_string_unterminated_group_eol   "F_unterminated_group_eol"
-    #define FL_status_string_unterminated_group_eos   "F_unterminated_group_eos"
-    #define FL_status_string_unterminated_group_stop  "F_unterminated_group_stop"
-    #define FL_status_string_unterminated_nest        "F_unterminated_nest"
-    #define FL_status_string_unterminated_nest_block  "F_unterminated_nest_block"
-    #define FL_status_string_unterminated_nest_eof    "F_unterminated_nest_eof"
-    #define FL_status_string_unterminated_nest_eol    "F_unterminated_nest_eol"
-    #define FL_status_string_unterminated_nest_eos    "F_unterminated_nest_eos"
-    #define FL_status_string_unterminated_nest_stop   "F_unterminated_nest_stop"
-
-    #define FL_status_string_buffer_length                   8
-    #define FL_status_string_buffer_too_small_length         18
-    #define FL_status_string_buffer_too_large_length         18
-    #define FL_status_string_incomplete_utf_length           16
-    #define FL_status_string_incomplete_utf_block_length     22
-    #define FL_status_string_incomplete_utf_eof_length       20
-    #define FL_status_string_incomplete_utf_eol_length       20
-    #define FL_status_string_incomplete_utf_eos_length       20
-    #define FL_status_string_incomplete_utf_stop_length      21
-    #define FL_status_string_none_block_length               12
-    #define FL_status_string_none_eof_length                 10
-    #define FL_status_string_none_eol_length                 10
-    #define FL_status_string_none_eos_length                 10
-    #define FL_status_string_none_stop_length                11
-    #define FL_status_string_data_length                     6
-    #define FL_status_string_data_not_length                 10
-    #define FL_status_string_data_not_block_length           16
-    #define FL_status_string_data_not_eof_length             14
-    #define FL_status_string_data_not_eol_length             14
-    #define FL_status_string_data_not_eos_length             14
-    #define FL_status_string_data_not_stop_length            15
-    #define FL_status_string_string_too_small_length         18
-    #define FL_status_string_string_too_large_length         18
-    #define FL_status_string_unterminated_length             14
-    #define FL_status_string_unterminated_block_length       20
-    #define FL_status_string_unterminated_eof_length         18
-    #define FL_status_string_unterminated_eol_length         18
-    #define FL_status_string_unterminated_eos_length         18
-    #define FL_status_string_unterminated_stop_length        19
-    #define FL_status_string_unterminated_group_length       20
-    #define FL_status_string_unterminated_group_block_length 26
-    #define FL_status_string_unterminated_group_eof_length   23
-    #define FL_status_string_unterminated_group_eol_length   23
-    #define FL_status_string_unterminated_group_eos_length   23
-    #define FL_status_string_unterminated_group_stop_length  24
-    #define FL_status_string_unterminated_nest_length        19
-    #define FL_status_string_unterminated_nest_block_length  24
-    #define FL_status_string_unterminated_nest_eof_length    23
-    #define FL_status_string_unterminated_nest_eol_length    23
-    #define FL_status_string_unterminated_nest_eos_length    23
-    #define FL_status_string_unterminated_nest_stop_length   24
+    #define FL_status_string_buffer                     "F_buffer"
+    #define FL_status_string_buffer_not                 "F_buffer_not"
+    #define FL_status_string_buffer_too_large           "F_buffer_too_large"
+    #define FL_status_string_buffer_too_small           "F_buffer_too_small"
+    #define FL_status_string_complete_not_utf           "F_complete_not_utf"
+    #define FL_status_string_complete_not_utf_block     "F_complete_not_utf_block"
+    #define FL_status_string_complete_not_utf_eof       "F_complete_not_utf_eof"
+    #define FL_status_string_complete_not_utf_eol       "F_complete_not_utf_eol"
+    #define FL_status_string_complete_not_utf_eos       "F_complete_not_utf_eos"
+    #define FL_status_string_complete_not_utf_stop      "F_complete_not_utf_stop"
+    #define FL_status_string_none_block                 "F_none_block"
+    #define FL_status_string_none_eof                   "F_none_eof"
+    #define FL_status_string_none_eol                   "F_none_eol"
+    #define FL_status_string_none_eos                   "F_none_eos"
+    #define FL_status_string_none_not                   "F_none_not"
+    #define FL_status_string_none_stop                  "F_none_stop"
+    #define FL_status_string_data                       "F_data"
+    #define FL_status_string_data_not                   "F_data_not"
+    #define FL_status_string_data_not_block             "F_data_not_block"
+    #define FL_status_string_data_not_eof               "F_data_not_eof"
+    #define FL_status_string_data_not_eol               "F_data_not_eol"
+    #define FL_status_string_data_not_eos               "F_data_not_eos"
+    #define FL_status_string_data_not_stop              "F_data_not_stop"
+    #define FL_status_string_terminated                 "F_terminated"
+    #define FL_status_string_terminated_not             "F_terminated_not"
+    #define FL_status_string_terminated_not_block       "F_terminated_not_block"
+    #define FL_status_string_terminated_not_eof         "F_terminated_not_eof"
+    #define FL_status_string_terminated_not_eol         "F_terminated_not_eol"
+    #define FL_status_string_terminated_not_eos         "F_terminated_not_eos"
+    #define FL_status_string_terminated_not_stop        "F_terminated_not_stop"
+    #define FL_status_string_terminated_not_group       "F_terminated_not_group"
+    #define FL_status_string_terminated_not_group_block "F_terminated_not_group_block"
+    #define FL_status_string_terminated_not_group_eof   "F_terminated_not_group_eof"
+    #define FL_status_string_terminated_not_group_eol   "F_terminated_not_group_eol"
+    #define FL_status_string_terminated_not_group_eos   "F_terminated_not_group_eos"
+    #define FL_status_string_terminated_not_group_stop  "F_terminated_not_group_stop"
+    #define FL_status_string_terminated_not_nest        "F_terminated_not_nest"
+    #define FL_status_string_terminated_not_nest_block  "F_terminated_not_nest_block"
+    #define FL_status_string_terminated_not_nest_eof    "F_terminated_not_nest_eof"
+    #define FL_status_string_terminated_not_nest_eol    "F_terminated_not_nest_eol"
+    #define FL_status_string_terminated_not_nest_eos    "F_terminated_not_nest_eos"
+    #define FL_status_string_terminated_not_nest_stop   "F_terminated_not_nest_stop"
+
+    #define FL_status_string_buffer_length                     8
+    #define FL_status_string_buffer_not_length                 12
+    #define FL_status_string_buffer_too_large_length           18
+    #define FL_status_string_buffer_too_small_length           18
+    #define FL_status_string_complete_not_utf_length           18
+    #define FL_status_string_complete_not_utf_block_length     24
+    #define FL_status_string_complete_not_utf_eof_length       22
+    #define FL_status_string_complete_not_utf_eol_length       22
+    #define FL_status_string_complete_not_utf_eos_length       22
+    #define FL_status_string_complete_not_utf_stop_length      23
+    #define FL_status_string_none_block_length                 12
+    #define FL_status_string_none_eof_length                   10
+    #define FL_status_string_none_eol_length                   10
+    #define FL_status_string_none_eos_length                   10
+    #define FL_status_string_none_stop_length                  11
+    #define FL_status_string_data_length                       6
+    #define FL_status_string_data_not_length                   10
+    #define FL_status_string_data_not_block_length             16
+    #define FL_status_string_data_not_eof_length               14
+    #define FL_status_string_data_not_eol_length               14
+    #define FL_status_string_data_not_eos_length               14
+    #define FL_status_string_data_not_stop_length              15
+    #define FL_status_string_terminated_length                 12
+    #define FL_status_string_terminated_not_length             16
+    #define FL_status_string_terminated_not_block_length       22
+    #define FL_status_string_terminated_not_eof_length         20
+    #define FL_status_string_terminated_not_eol_length         20
+    #define FL_status_string_terminated_not_eos_length         20
+    #define FL_status_string_terminated_not_stop_length        21
+    #define FL_status_string_terminated_not_group_length       22
+    #define FL_status_string_terminated_not_group_block_length 28
+    #define FL_status_string_terminated_not_group_eof_length   25
+    #define FL_status_string_terminated_not_group_eol_length   25
+    #define FL_status_string_terminated_not_group_eos_length   25
+    #define FL_status_string_terminated_not_group_stop_length  26
+    #define FL_status_string_terminated_not_nest_length        21
+    #define FL_status_string_terminated_not_nest_block_length  26
+    #define FL_status_string_terminated_not_nest_eof_length    25
+    #define FL_status_string_terminated_not_nest_eol_length    25
+    #define FL_status_string_terminated_not_nest_eos_length    25
+    #define FL_status_string_terminated_not_nest_stop_length   26
   #endif // _di_F_status_buffer_
 
   #ifndef _di_F_status_memory_
+    #define FL_status_string_memory              "F_memory"
     #define FL_status_string_memory_allocation   "F_memory_allocation"
     #define FL_status_string_memory_deallocation "F_memory_deallocation"
+    #define FL_status_string_memory_not          "F_memory_not"
     #define FL_status_string_memory_reallocation "F_memory_reallocation"
 
+    #define FL_status_string_memory_length              8
     #define FL_status_string_memory_allocation_length   19
     #define FL_status_string_memory_deallocation_length 21
+    #define FL_status_string_memory_not_length          12
     #define FL_status_string_memory_reallocation_length 21
 
   #endif // _di_F_status_memory_
 
+  #ifndef _di_F_status_process_
+    #define FL_status_string_process          "F_process"
+    #define FL_status_string_process_not      "F_process_not"
+    #define FL_status_string_process_too_many "F_process_too_many"
+
+    #define FL_status_string_process_length          9
+    #define FL_status_string_process_not_length      13
+    #define FL_status_string_process_too_many_length 18
+  #endif // _di_F_status_process_
+
   #ifndef _di_F_status_file_
     #define FL_status_string_file                    "F_file"
     #define FL_status_string_file_allocation         "F_file_allocation"
@@ -479,6 +592,7 @@ extern "C" {
     #define FL_status_string_file_flush              "F_file_flush"
     #define FL_status_string_file_found              "F_file_found"
     #define FL_status_string_file_found_not          "F_file_found_not"
+    #define FL_status_string_file_not                "F_file_not"
     #define FL_status_string_file_open               "F_file_open"
     #define FL_status_string_file_open_max           "F_file_open_max"
     #define FL_status_string_file_opened             "F_file_opened"
@@ -521,6 +635,7 @@ extern "C" {
     #define FL_status_string_file_flush_length               12
     #define FL_status_string_file_found_length               12
     #define FL_status_string_file_found_not_length           16
+    #define FL_status_string_file_not_length                 10
     #define FL_status_string_file_open_length                11
     #define FL_status_string_file_open_max_length            15
     #define FL_status_string_file_opened_length              13
@@ -555,10 +670,12 @@ extern "C" {
 
   #ifndef _di_F_status_filesystem_
     #define FL_status_string_filesystem               "F_filesystem"
+    #define FL_status_string_filesystem_not           "F_filesystem_not"
     #define FL_status_string_filesystem_quota_block   "F_filesystem_quota_block"
     #define FL_status_string_filesystem_quota_reached "F_filesystem_quota_reached"
 
     #define FL_status_string_filesystem_length               12
+    #define FL_status_string_filesystem_not_length           16
     #define FL_status_string_filesystem_quota_block_length   24
     #define FL_status_string_filesystem_quota_reached_length 26
   #endif // _di_F_status_filesystem_
@@ -574,6 +691,7 @@ extern "C" {
     #define FL_status_string_directory_found_not   "F_directory_found_not"
     #define FL_status_string_directory_flush       "F_directory_flush"
     #define FL_status_string_directory_link_max    "F_directory_link_max"
+    #define FL_status_string_directory_not         "F_directory_not"
     #define FL_status_string_directory_open        "F_directory_open"
     #define FL_status_string_directory_purge       "F_directory_purge"
     #define FL_status_string_directory_read        "F_directory_read"
@@ -594,6 +712,7 @@ extern "C" {
     #define FL_status_string_directory_found_not_length   21
     #define FL_status_string_directory_flush_length       17
     #define FL_status_string_directory_link_max_length    20
+    #define FL_status_string_directory_not_length         15
     #define FL_status_string_directory_open_length        16
     #define FL_status_string_directory_purge_length       17
     #define FL_status_string_directory_read_length        16
@@ -608,12 +727,14 @@ extern "C" {
   #ifndef _di_F_status_socket_
     #define FL_status_string_socket         "F_socket"
     #define FL_status_string_socket_client  "F_socket_client"
+    #define FL_status_string_socket_not     "F_socket_not"
     #define FL_status_string_socket_receive "F_socket_receive"
     #define FL_status_string_socket_send    "F_socket_send"
     #define FL_status_string_socket_target  "F_socket_target"
 
     #define FL_status_string_socket_length         8
     #define FL_status_string_socket_client_length  15
+    #define FL_status_string_socket_not_length     12
     #define FL_status_string_socket_receive_length 16
     #define FL_status_string_socket_send_length    13
     #define FL_status_string_socket_target_length  15
@@ -651,6 +772,7 @@ extern "C" {
     #define FL_status_string_access_granted_super   "F_access_granted_super"
     #define FL_status_string_access_group           "F_access_group"
     #define FL_status_string_access_mode            "F_access_mode"
+    #define FL_status_string_access_not             "F_access_not"
     #define FL_status_string_access_owner           "F_access_owner"
 
     #define FL_status_string_access_length                 8
@@ -672,6 +794,7 @@ extern "C" {
     #define FL_status_string_access_granted_super_length   22
     #define FL_status_string_access_group_length           14
     #define FL_status_string_access_mode_length            13
+    #define FL_status_string_access_not_length             12
     #define FL_status_string_access_owner_length           14
   #endif // _di_F_status_access_
 
index 2de9c691fbd0fc9182228041390eeb5c967e7242..591fee48785882e3658098fbca9fece7896eb436 100644 (file)
@@ -1037,10 +1037,10 @@ extern "C" {
       }
       // Do not operate on UTF-8 fragments that are not the first byte of the character.
       else if (width == 1) {
-        return F_status_set_error(F_incomplete_utf);
+        return F_status_set_error(F_complete_not_utf);
       }
       else {
-        if (range->start + width > range->stop) return F_status_set_error(F_incomplete_utf_stop);
+        if (range->start + width > range->stop) return F_status_set_error(F_complete_not_utf_stop);
 
         if (width == seek_width) {
           f_utf_character_t character = 0;
@@ -1087,10 +1087,10 @@ extern "C" {
       }
       // Do not operate on UTF-8 fragments that are not the first byte of the character.
       else if (width == 1) {
-        return F_status_set_error(F_incomplete_utf);
+        return F_status_set_error(F_complete_not_utf);
       }
       else {
-        if (range->start + width > range->stop) return F_status_set_error(F_incomplete_utf_stop);
+        if (range->start + width > range->stop) return F_status_set_error(F_complete_not_utf_stop);
       }
 
       range->start += width;
@@ -1131,10 +1131,10 @@ extern "C" {
       }
       // Do not operate on UTF-8 fragments that are not the first byte of the character.
       else if (width == 1) {
-        return F_status_set_error(F_incomplete_utf);
+        return F_status_set_error(F_complete_not_utf);
       }
       else {
-        if (range->start + width > range->stop) return F_status_set_error(F_incomplete_utf_stop);
+        if (range->start + width > range->stop) return F_status_set_error(F_complete_not_utf_stop);
       }
 
       range->start += width;
@@ -1199,10 +1199,10 @@ extern "C" {
       }
       // Do not operate on UTF-8 fragments that are not the first byte of the character.
       else if (width == 1) {
-        return F_status_set_error(F_incomplete_utf);
+        return F_status_set_error(F_complete_not_utf);
       }
       else {
-        if (range->start + width > range->stop) return F_status_set_error(F_incomplete_utf_stop);
+        if (range->start + width > range->stop) return F_status_set_error(F_complete_not_utf_stop);
 
         if (width == seek_width) {
           f_utf_character_t character = 0;
@@ -1789,10 +1789,10 @@ extern "C" {
       }
       // Do not operate on UTF-8 fragments that are not the first byte of the character.
       else if (width == 1) {
-        return F_status_set_error(F_incomplete_utf);
+        return F_status_set_error(F_complete_not_utf);
       }
       else {
-        if (range->start + width > range->stop) return F_status_set_error(F_incomplete_utf_eos);
+        if (range->start + width > range->stop) return F_status_set_error(F_complete_not_utf_eos);
 
         if (width == seek_width) {
           f_utf_character_t character = 0;
@@ -1832,10 +1832,10 @@ extern "C" {
       }
       // Do not operate on UTF-8 fragments that are not the first byte of the character.
       else if (width == 1) {
-        return F_status_set_error(F_incomplete_utf);
+        return F_status_set_error(F_complete_not_utf);
       }
       else {
-        if (range->start + width > range->stop) return F_status_set_error(F_incomplete_utf_stop);
+        if (range->start + width > range->stop) return F_status_set_error(F_complete_not_utf_stop);
       }
 
       range->start += width;
@@ -1878,10 +1878,10 @@ extern "C" {
       }
       // Do not operate on UTF-8 fragments that are not the first byte of the character.
       else if (width == 1) {
-        return F_status_set_error(F_incomplete_utf);
+        return F_status_set_error(F_complete_not_utf);
       }
       else {
-        if (range->start + width > range->stop) return F_status_set_error(F_incomplete_utf_stop);
+        if (range->start + width > range->stop) return F_status_set_error(F_complete_not_utf_stop);
       }
 
       range->start += width;
@@ -1945,10 +1945,10 @@ extern "C" {
       }
       // Do not operate on UTF-8 fragments that are not the first byte of the character.
       else if (width == 1) {
-        return F_status_set_error(F_incomplete_utf);
+        return F_status_set_error(F_complete_not_utf);
       }
       else {
-        if (range->start + width > range->stop) return F_status_set_error(F_incomplete_utf_stop);
+        if (range->start + width > range->stop) return F_status_set_error(F_complete_not_utf_stop);
 
         if (width == seek_width) {
           f_utf_character_t character = 0;
index dfaf727b08d76c2236edf93fa9afa87e789625c0..c94b84a1776011616ce1bc9fffe5e66581ce8603 100644 (file)
@@ -1657,8 +1657,8 @@ extern "C" {
  *   F_none_stop on success, but stopped at end of range.
  *   F_data_not on success, but there was no string data to seek.
  *   F_data_not_stop on success, but the range.start > range.stop.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
  *
@@ -1686,8 +1686,8 @@ extern "C" {
  *   F_none_stop on success, but stopped at end of range.
  *   F_data_not on success, but there was no string data to seek.
  *   F_data_not_stop on success, but the range.start > range.stop.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_memory_allocation (with error bit) on memory allocation error.
  *   F_memory_reallocation (with error bit) on memory reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
@@ -1716,8 +1716,8 @@ extern "C" {
  *   F_none_stop on success, but stopped at end of range.
  *   F_data_not on success, but there was no string data to seek.
  *   F_data_not_stop on success, but the range.start > range.stop.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_memory_allocation (with error bit) on memory allocation error.
  *   F_memory_reallocation (with error bit) on memory reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
@@ -1746,8 +1746,8 @@ extern "C" {
  *   F_none_stop on success, but stopped at end of range.
  *   F_data_not on success, but there was no string data to seek.
  *   F_data_not_stop on success, but the range.start > range.stop.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_parameter (with error bit) if a parameter is invalid.
  */
 #ifndef _di_fl_string_dynamic_seek_to_
@@ -1770,8 +1770,8 @@ extern "C" {
  *   F_none_stop on success, but stopped at end of range.
  *   F_data_not on success, but there was no string data to seek.
  *   F_data_not_stop on success, but the range.start > range.stop.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
  *
@@ -2400,8 +2400,8 @@ extern "C" {
  *   F_none on success.
  *   F_none_eol on success, but stopped at EOL.
  *   F_data_not_stop if range.start > range.stop.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
  *
@@ -2428,8 +2428,8 @@ extern "C" {
  *   F_none on success.
  *   F_none_eol on success, but stopped at EOL.
  *   F_data_not_stop if range.start > range.stop.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_memory_allocation (with error bit) on memory allocation error.
  *   F_memory_reallocation (with error bit) on memory reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
@@ -2458,8 +2458,8 @@ extern "C" {
  *   F_none_eol on success, but stopped at EOL.
  *   F_none_stop on success, but stopped stop location.
  *   F_data_not_stop if range.start > range.stop.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_memory_allocation (with error bit) on memory allocation error.
  *   F_memory_reallocation (with error bit) on memory reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
@@ -2487,8 +2487,8 @@ extern "C" {
  *   F_none on success.
  *   F_none_stop on success, but stopped stop location.
  *   F_data_not_stop if range.start > range.stop.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_parameter (with error bit) if a parameter is invalid.
  */
 #ifndef _di_fl_string_seek_to_
@@ -2510,8 +2510,8 @@ extern "C" {
  *   F_none on success.
  *   F_none_stop on success, but stopped stop location.
  *   F_data_not_stop if range.start > range.stop.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
  *
index f4be6b5a93014fd260c29661bfbe45db4a9909f2..beab328e5779d66b17df333be6627aac14a754ab 100644 (file)
@@ -1117,9 +1117,9 @@ extern "C" {
  *   F_none_stop on success, but stopped stop location.
  *   F_data_not_eos if buffer length is 0.
  *   F_data_not_stop if range.start > range.stop.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
- *   F_incomplete_utf_eos (with error bit) if end of string is reached before a complete UTF-8 character can be processed.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf_eos (with error bit) if end of string is reached before a complete UTF-8 character can be processed.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) if character is an invalid UTF-8 character.
  */
@@ -1509,8 +1509,8 @@ extern "C" {
  *   F_none on success.
  *   F_none_eol on success, but stopped at EOL.
  *   F_data_not_stop if range.start > range.stop.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_memory_allocation (with error bit) on memory allocation error.
  *   F_memory_reallocation (with error bit) on memory reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
@@ -1540,8 +1540,8 @@ extern "C" {
  *   F_none_eol on success, but stopped at EOL.
  *   F_none_stop on success, but stopped stop location.
  *   F_data_not_stop if range.start > range.stop.
- *   F_incomplete_utf (with error bit) if character is an incomplete UTF-8 fragment.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_memory_allocation (with error bit) on memory allocation error.
  *   F_memory_reallocation (with error bit) on memory reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
index 9503055303a4b094e18793e1b2fe4cc2d9a221f8..12e1c33d674263e28e6a8bf97756d2793dc6c33a 100644 (file)
@@ -123,7 +123,7 @@ extern "C" {
           width_written = width;
 
           if (*written + width > write_max) {
-            return F_incomplete_utf_stop;
+            return F_complete_not_utf_stop;
           }
 
           buffer_write[used] = f_macro_utf_character_t_to_char_1(string[*written + i]);
@@ -170,7 +170,7 @@ extern "C" {
         if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block);
         if (errno == EBADF) return F_status_set_error(F_file_descriptor);
         if (errno == EFAULT) return F_status_set_error(F_buffer);
-        if (errno == EINTR) return F_status_set_error(F_interrupted);
+        if (errno == EINTR) return F_status_set_error(F_interrupt);
         if (errno == EINVAL) return F_status_set_error(F_parameter);
         if (errno == EIO) return F_status_set_error(F_input_output);
         if (errno == EISDIR) return F_status_set_error(F_file_type_directory);
index a43d7eca374704915e87791c109dabddadb0deb8..ef7d5b4c46f1627a1a1ce851ee4d6c6679fc186a 100644 (file)
@@ -62,14 +62,14 @@ extern "C" {
  *   F_none on success.
  *   F_none_eos on success but range.stop exceeded buffer.used (only wrote up to buffer.used).
  *   F_none_stop on success but no data was written (written == 0) (not an error and often happens if file type is not a regular file).
- *   F_incomplete_utf_stop if max write was reached but was unable to completely write a given UTF-8 block (incomplete UTF-8 is not written, not even partially).
+ *   F_complete_not_utf_stop if max write was reached but was unable to completely write a given UTF-8 block (incomplete UTF-8 is not written, not even partially).
  *   F_block (with error bit) if file descriptor is set to non-block and the write would result in a blocking operation.
  *   F_buffer (with error bit) if the buffer is invalid.
  *   F_file_closed (with error bit) if file is not open.
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see fl_utf_file_write()
index 7fa69c932380b30e12fd7073d03d471d69a10a1c..839750c42cabd0eec704c6934c30bbd897d309d7 100644 (file)
@@ -42,7 +42,7 @@ extern "C" {
 
     if (!size_read) {
       if (width != 0) {
-        return F_status_set_error(F_incomplete_utf_eof);
+        return F_status_set_error(F_complete_not_utf_eof);
       }
 
       return F_none_eof;
@@ -51,7 +51,7 @@ extern "C" {
       if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block);
       if (errno == EBADF) return F_status_set_error(F_file_descriptor);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == EIO) return F_status_set_error(F_input_output);
       if (errno == EISDIR) return F_status_set_error(F_file_type_directory);
@@ -59,7 +59,7 @@ extern "C" {
       return F_status_set_error(F_failure);
     }
     else if (width != 0) {
-      return F_status_set_error(F_incomplete_utf_stop);
+      return F_status_set_error(F_complete_not_utf_stop);
     }
 
     return F_none;
@@ -102,7 +102,7 @@ extern "C" {
 
     if (!size_read) {
       if (width) {
-        return F_status_set_error(F_incomplete_utf_eof);
+        return F_status_set_error(F_complete_not_utf_eof);
       }
 
       return F_none_eof;
@@ -111,7 +111,7 @@ extern "C" {
       if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block);
       if (errno == EBADF) return F_status_set_error(F_file_descriptor);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == EIO) return F_status_set_error(F_input_output);
       if (errno == EISDIR) return F_status_set_error(F_file_type_directory);
@@ -119,7 +119,7 @@ extern "C" {
       return F_status_set_error(F_failure);
     }
     else if (width != 0) {
-      return F_status_set_error(F_incomplete_utf_stop);
+      return F_status_set_error(F_complete_not_utf_stop);
     }
 
     return F_none;
@@ -170,7 +170,7 @@ extern "C" {
 
     if (!size_read) {
       if (width != 0) {
-        return F_status_set_error(F_incomplete_utf_eof);
+        return F_status_set_error(F_complete_not_utf_eof);
       }
 
       return F_none_eof;
@@ -179,7 +179,7 @@ extern "C" {
       if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block);
       if (errno == EBADF) return F_status_set_error(F_file_descriptor);
       if (errno == EFAULT) return F_status_set_error(F_buffer);
-      if (errno == EINTR) return F_status_set_error(F_interrupted);
+      if (errno == EINTR) return F_status_set_error(F_interrupt);
       if (errno == EINVAL) return F_status_set_error(F_parameter);
       if (errno == EIO) return F_status_set_error(F_input_output);
       if (errno == EISDIR) return F_status_set_error(F_file_type_directory);
@@ -187,7 +187,7 @@ extern "C" {
       return F_status_set_error(F_failure);
     }
     else if (width != 0) {
-      return F_status_set_error(F_incomplete_utf_stop);
+      return F_status_set_error(F_complete_not_utf_stop);
     }
 
     return F_none;
index 44f938082ec5a9e7b451017bb52d691e3f204daf..6d3bc76605e8ced6a4e0c2fd97f60988550fc5ca 100644 (file)
@@ -46,10 +46,10 @@ extern "C" {
  *   F_file_closed (with error bit) if file is not open.
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
- *   F_incomplete_utf_eof (with error bit) if UTF-8 character was incomplete at the end of the file.
- *   F_incomplete_utf_stop (with error bit) if UTF-8 character was incomplete at a stop point (file.size_read).
+ *   F_complete_not_utf_eof (with error bit) if UTF-8 character was incomplete at the end of the file.
+ *   F_complete_not_utf_stop (with error bit) if UTF-8 character was incomplete at a stop point (file.size_read).
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see read()
@@ -79,10 +79,10 @@ extern "C" {
  *   F_file_closed (with error bit) if file is not open.
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
- *   F_incomplete_utf_eof (with error bit) if UTF-8 character was incomplete at the end of the file.
- *   F_incomplete_utf_stop (with error bit) if UTF-8 character was incomplete at a stop point (file.size_read).
+ *   F_complete_not_utf_eof (with error bit) if UTF-8 character was incomplete at the end of the file.
+ *   F_complete_not_utf_stop (with error bit) if UTF-8 character was incomplete at a stop point (file.size_read).
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see read()
@@ -113,10 +113,10 @@ extern "C" {
  *   F_file_closed (with error bit) if file is not open.
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
- *   F_incomplete_utf_eof (with error bit) if UTF-8 character was incomplete at the end of the file.
- *   F_incomplete_utf_stop (with error bit) if UTF-8 character was incomplete at a stop point (file.size_read).
+ *   F_complete_not_utf_eof (with error bit) if UTF-8 character was incomplete at the end of the file.
+ *   F_complete_not_utf_stop (with error bit) if UTF-8 character was incomplete at a stop point (file.size_read).
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see read()
@@ -140,7 +140,7 @@ extern "C" {
  *   F_none on success.
  *   F_none_eos on success but range.stop exceeded buffer.used (only wrote up to buffer.used).
  *   F_none_stop on success but no data was written (written == 0) (not an error and often happens if file type is not a regular file).
- *   F_incomplete_utf_stop if max write was reached but was unable to completely write a given UTF-8 block (incomplete UTF-8 is not written, not even partially).
+ *   F_complete_not_utf_stop if max write was reached but was unable to completely write a given UTF-8 block (incomplete UTF-8 is not written, not even partially).
  *   F_block (with error bit) if file descriptor is set to non-block and the write would result in a blocking operation.
  *   F_buffer (with error bit) if the buffer is invalid.
  *   F_file (with error bit) if file descriptor is in an error state.
@@ -148,7 +148,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see write()
@@ -174,7 +174,7 @@ extern "C" {
  *   F_none on success.
  *   F_none_eos on success but range.stop exceeded buffer.used (only wrote up to buffer.used).
  *   F_none_stop on success but no data was written (written == 0) (not an error and often happens if file type is not a regular file).
- *   F_incomplete_utf_stop if max write was reached but was unable to completely write a given UTF-8 block (incomplete UTF-8 is not written, not even partially).
+ *   F_complete_not_utf_stop if max write was reached but was unable to completely write a given UTF-8 block (incomplete UTF-8 is not written, not even partially).
  *   F_block (with error bit) if file descriptor is set to non-block and the write would result in a blocking operation.
  *   F_buffer (with error bit) if the buffer is invalid.
  *   F_file (with error bit) if file descriptor is in an error state.
@@ -182,7 +182,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see write()
@@ -208,7 +208,7 @@ extern "C" {
  *   F_none on success.
  *   F_none_eos on success but range.stop exceeded buffer.used (only wrote up to buffer.used).
  *   F_none_stop on success but no data was written (written == 0) (not an error and often happens if file type is not a regular file).
- *   F_incomplete_utf_stop if max write was reached but was unable to completely write a given UTF-8 block (incomplete UTF-8 is not written, not even partially).
+ *   F_complete_not_utf_stop if max write was reached but was unable to completely write a given UTF-8 block (incomplete UTF-8 is not written, not even partially).
  *   F_block (with error bit) if file descriptor is set to non-block and the write would result in a blocking operation.
  *   F_buffer (with error bit) if the buffer is invalid.
  *   F_file (with error bit) if file descriptor is in an error state.
@@ -216,7 +216,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see write()
@@ -242,7 +242,7 @@ extern "C" {
  *   F_none on success.
  *   F_none_eos on success but range.stop exceeded buffer.used (only wrote up to buffer.used).
  *   F_none_stop on success but no data was written (written == 0) (not an error and often happens if file type is not a regular file).
- *   F_incomplete_utf_stop if max write was reached but was unable to completely write a given UTF-8 block (incomplete UTF-8 is not written, not even partially).
+ *   F_complete_not_utf_stop if max write was reached but was unable to completely write a given UTF-8 block (incomplete UTF-8 is not written, not even partially).
  *   F_block (with error bit) if file descriptor is set to non-block and the write would result in a blocking operation.
  *   F_buffer (with error bit) if the buffer is invalid.
  *   F_file (with error bit) if file descriptor is in an error state.
@@ -250,7 +250,7 @@ extern "C" {
  *   F_file_descriptor (with error bit) if the file descriptor is invalid.
  *   F_file_type_directory (with error bit) if file descriptor represents a directory.
  *   F_input_output (with error bit) on I/O error.
- *   F_interrupted (with error bit) if interrupt was received.
+ *   F_interrupt (with error bit) if interrupt was received.
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  * @see write()
index 744283d0fadd1e8f0a611d582f075f029f118641..35a24c423614fede61ba38d22d290c92ed667bc8 100644 (file)
@@ -86,7 +86,7 @@ extern "C" {
       return F_false;
     }
 
-    if (status == F_incomplete_utf) {
+    if (status == F_complete_not_utf) {
       if (error.verbosity != f_console_verbosity_quiet) {
         fprintf(error.to.stream, "%c", f_string_eol[0]);
         fprintf(error.to.stream, "%s%sInvalid (incomplete) UTF-8 character while calling ", error.context.before->string, error.prefix ? error.prefix : "");
index cc8c2c29d91b504edcc9125cda2ca60a10a44f6a..a60de33b39d55367ba05ca36bab6827dc4a6f683 100644 (file)
@@ -504,7 +504,7 @@ extern "C" {
     if (F_status_is_error(status)) {
 
       // Do not consider PATH is not available (or valid?) to be an error.
-      if (F_status_set_fine(status) == F_invalid || F_status_set_fine(status) == F_failure) {
+      if (F_status_set_fine(status) == F_valid_not || F_status_set_fine(status) == F_failure) {
         status = F_none;
       }
     }
index 8ea06c572ec8138bbd18bcb111f03971ab64b93f..46b9192b3530ade84f57caf924c3b84b1fc1acc8 100644 (file)
@@ -58,7 +58,7 @@ extern "C" {
  *   F_data_not_eol if there is no data to write and EOL was reached (@todo: review related code and detemine what this is doing).
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
  *   F_data_not_stop no data to write due start location being greater than stop location.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_number_overflow (with error bit) if the maximimum buffer size is reached.
  *   F_parameter (with error bit) if a parameter is invalid.
@@ -90,7 +90,7 @@ extern "C" {
  *   F_none_stop on success after reaching stopping point.
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
  *   F_data_not_stop no data to write due start location being greater than stop location.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
index 2427ba5bfc006bdeef05d954f743911bed359359..fb16ce3d4fdd0c532b8731133caf82bfe4024c44 100644 (file)
@@ -57,7 +57,7 @@ extern "C" {
  *   F_data_not_eol if there is no data to write and EOL was reached (@todo: review related code and detemine what this is doing).
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
  *   F_data_not_stop no data to write due start location being greater than stop location.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_number_overflow (with error bit) if the maximimum buffer size is reached.
  *   F_parameter (with error bit) if a parameter is invalid.
@@ -89,7 +89,7 @@ extern "C" {
  *   F_none_stop on success after reaching stopping point.
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
  *   F_data_not_stop no data to write due start location being greater than stop location.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
index fcbac8aaa07883affef635a8a9a89c4532722d02..2e2a14693920e2dd52134fa1cbfd6398eb2bdcf8 100644 (file)
@@ -86,7 +86,7 @@ extern "C" {
 
         return status;
       }
-      else if (status == F_unterminated_eos || status == F_unterminated_stop || status == F_unterminated_nest_eos || status == F_unterminated_nest_stop) {
+      else if (status == F_terminated_not_eos || status == F_terminated_not_stop || status == F_terminated_not_nest_eos || status == F_terminated_not_nest_stop) {
 
         // If at least some valid object was found, then return F_none equivalents.
         if (nest->depth[0].used > initial_used) {
index a8b4b5942836e5a8b8b1bf1471d0fc254febc521..a694b8c697141d323617837a49e0653d35cad70c 100644 (file)
@@ -54,16 +54,16 @@ extern "C" {
  *   F_data_not_eol if there is no data to write and EOL was reached (@todo: review related code and detemine what this is doing).
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
  *   F_data_not_stop no data to write due start location being greater than stop location.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
- *   F_incomplete_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_number_overflow (with error bit) if the maximimum buffer size is reached.
  *   F_parameter (with error bit) if a parameter is invalid.
- *   F_unterminated_eos (with error bit) if end of buffer is reached before a closing bracket is found (object was found).
- *   F_unterminated_nest_eos (with error bit) if end of buffer is reached while inside a nested list before a closing bracket is found (object was found).
- *   F_unterminated_nest_stop (with error bit) if stop location is reached while inside a nested list before a closing bracket is found (object was found).
- *   F_unterminated_stop (with error bit) if stop location is reached before a closing bracket is found (object was found).
+ *   F_terminated_not_eos (with error bit) if end of buffer is reached before a closing bracket is found (object was found).
+ *   F_terminated_not_nest_eos (with error bit) if end of buffer is reached while inside a nested list before a closing bracket is found (object was found).
+ *   F_terminated_not_nest_stop (with error bit) if stop location is reached while inside a nested list before a closing bracket is found (object was found).
+ *   F_terminated_not_stop (with error bit) if stop location is reached before a closing bracket is found (object was found).
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
  *   FL_fss_found_object_content_not on success and object was found but no content was found (start location is at end of object).
  *
@@ -98,7 +98,7 @@ extern "C" {
  *   F_none_stop on success after reaching stopping point.
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
  *   F_data_not_stop no data to write due start location being greater than stop location.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
index 47c657d3bb0ed91a4f407a2710c65d2abdc05ff6..7bccfb978ff17cd835d40a3abc227a5b9bbe9e39 100644 (file)
@@ -135,7 +135,7 @@ extern "C" {
 
         return status;
       }
-      else if (status == F_data_not_eos || status == F_data_not_stop || status == F_unterminated_group_eos || status == F_unterminated_group_stop) {
+      else if (status == F_data_not_eos || status == F_data_not_stop || status == F_terminated_not_group_eos || status == F_terminated_not_group_stop) {
 
         // If at least some valid object was found, then return F_none equivelents.
         if (objects->used > initial_used) {
@@ -145,12 +145,12 @@ extern "C" {
 
         return status;
       }
-      else if (status != FL_fss_found_object && status != FL_fss_found_content && status != FL_fss_found_content_not && status != FL_fss_found_object_content_not && status != F_unterminated_group) {
+      else if (status != FL_fss_found_object && status != FL_fss_found_content && status != FL_fss_found_content_not && status != FL_fss_found_object_content_not && status != F_terminated_not_group) {
         return status;
       }
       // When content is found, the range->start is incremented, if content is found at range->stop, then range->start will be > range.stop.
       else if (range->start >= range->stop || range->start >= buffer.used) {
-        if (status == FL_fss_found_object || status == FL_fss_found_content || status == FL_fss_found_content_not || status == FL_fss_found_object_content_not || status == F_unterminated_group) {
+        if (status == FL_fss_found_object || status == FL_fss_found_content || status == FL_fss_found_content_not || status == FL_fss_found_object_content_not || status == F_terminated_not_group) {
           objects->used++;
           contents->used++;
 
@@ -164,12 +164,12 @@ extern "C" {
         }
 
         if (range->start >= buffer.used) {
-          if (status == F_unterminated_group) return F_unterminated_group_eos;
+          if (status == F_terminated_not_group) return F_terminated_not_group_eos;
 
           return F_none_eos;
         }
 
-        if (status == F_unterminated_group) return F_unterminated_group_stop;
+        if (status == F_terminated_not_group) return F_terminated_not_group_stop;
 
         return F_none_stop;
       }
index f250b8d8956b83b212e983a69a404d7a6cbc5416..c0f3b14151fab2b19dbc2266c756f2d4bada5c7c 100644 (file)
@@ -59,7 +59,7 @@ extern "C" {
  *   F_data_not_stop no data to write due start location being greater than stop location.
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
  *   F_data_not_eol if there is no data to write and EOL was reached (@todo: review related code and detemine what this is doing).
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
@@ -91,7 +91,7 @@ extern "C" {
  *   F_none_stop on success after reaching stopping point.
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
  *   F_data_not_stop no data to write due start location being greater than stop location.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
index fef146906c8a34479c813b885f529793016abba1..c75daacdbc5a283cb655a6afd36fbad8eb6bf3e4 100644 (file)
@@ -58,16 +58,16 @@ extern "C" {
  *   F_data_not_eol if there is no data to write and EOL was reached (@todo: review related code and detemine what this is doing).
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
  *   F_data_not_stop no data to write due start location being greater than stop location.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
- *   F_incomplete_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
- *   F_incomplete_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf_eos (with error bit) if the end of buffer is reached before the complete UTF-8 character can be processed.
+ *   F_complete_not_utf_stop (with error bit) if the stop location is reached before the complete UTF-8 character can be processed.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_number_overflow (with error bit) if the maximimum buffer size is reached.
  *   F_parameter (with error bit) if a parameter is invalid.
- *   F_unterminated_eos (with error bit) if end of buffer is reached before a closing bracket is found (object was found).
- *   F_unterminated_nest_eos (with error bit) if end of buffer is reached while inside a nested list before a closing bracket is found (object was found).
- *   F_unterminated_nest_stop (with error bit) if stop location is reached while inside a nested list before a closing bracket is found (object was found).
- *   F_unterminated_stop (with error bit) if stop location is reached before a closing bracket is found (object was found).
+ *   F_terminated_not_eos (with error bit) if end of buffer is reached before a closing bracket is found (object was found).
+ *   F_terminated_not_nest_eos (with error bit) if end of buffer is reached while inside a nested list before a closing bracket is found (object was found).
+ *   F_terminated_not_nest_stop (with error bit) if stop location is reached while inside a nested list before a closing bracket is found (object was found).
+ *   F_terminated_not_stop (with error bit) if stop location is reached before a closing bracket is found (object was found).
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
  *   FL_fss_found_object_content_not on success and object was found but no content was found (start location is at end of object).
  *
@@ -102,7 +102,7 @@ extern "C" {
  *   F_none_stop on success after reaching stopping point.
  *   F_data_not_eos no data to write due start location being greater than or equal to buffer size.
  *   F_data_not_stop no data to write due start location being greater than stop location.
- *   F_incomplete_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
+ *   F_complete_not_utf (with error bit) is returned on failure to read/process a UTF-8 character due to the character being potentially incomplete.
  *   F_memory_reallocation (with error bit) on reallocation error.
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
index 7f901ec9d354c7e5ceaa25edd214b31c0bb20d7d..ffa62feed8d147b9115405ef7be5061f6c37455c 100644 (file)
@@ -371,18 +371,48 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_absolute_not, length, FL_status_string_absolute_not_length) == F_equal_to) {
+        *code = F_absolute_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_address, length, FL_status_string_address_length) == F_equal_to) {
         *code = F_address;
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_address_not, length, FL_status_string_address_not_length) == F_equal_to) {
+        *code = F_address_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_block, length, FL_status_string_block_length) == F_equal_to) {
         *code = F_block;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_bound_out, length, FL_status_string_bound_out_length) == F_equal_to) {
-        *code = F_bound_out;
+      if (fl_string_compare(string, FL_status_string_block_not, length, FL_status_string_block_not_length) == F_equal_to) {
+        *code = F_block_not;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_bound, length, FL_status_string_bound_length) == F_equal_to) {
+        *code = F_bound;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_bound_not, length, FL_status_string_bound_not_length) == F_equal_to) {
+        *code = F_bound_not;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_complete, length, FL_status_string_complete_length) == F_equal_to) {
+        *code = F_complete;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_complete_not, length, FL_status_string_complete_not_length) == F_equal_to) {
+        *code = F_complete_not;
         return F_none;
       }
 
@@ -401,26 +431,51 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_critical_not, length, FL_status_string_critical_not_length) == F_equal_to) {
+        *code = F_critical_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_deadlock, length, FL_status_string_deadlock_length) == F_equal_to) {
         *code = F_deadlock;
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_deadlock_not, length, FL_status_string_deadlock_not_length) == F_equal_to) {
+        *code = F_deadlock_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_descriptor, length, FL_status_string_descriptor_length) == F_equal_to) {
         *code = F_descriptor;
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_descriptor_not, length, FL_status_string_descriptor_not_length) == F_equal_to) {
+        *code = F_descriptor_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_device, length, FL_status_string_device_length) == F_equal_to) {
         *code = F_device;
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_device_not, length, FL_status_string_device_not_length) == F_equal_to) {
+        *code = F_device_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_dummy, length, FL_status_string_dummy_length) == F_equal_to) {
         *code = F_dummy;
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_dummy_not, length, FL_status_string_dummy_not_length) == F_equal_to) {
+        *code = F_dummy_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_encoding, length, FL_status_string_encoding_length) == F_equal_to) {
         *code = F_encoding;
         return F_none;
@@ -436,16 +491,31 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_eof_not, length, FL_status_string_eof_not_length) == F_equal_to) {
+        *code = F_eof_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_eol, length, FL_status_string_eol_length) == F_equal_to) {
         *code = F_eol;
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_eol_not, length, FL_status_string_eol_not_length) == F_equal_to) {
+        *code = F_eol_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_eos, length, FL_status_string_eos_length) == F_equal_to) {
         *code = F_eos;
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_eos_not, length, FL_status_string_eos_not_length) == F_equal_to) {
+        *code = F_eos_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_exist, length, FL_status_string_exist_length) == F_equal_to) {
         *code = F_exist;
         return F_none;
@@ -461,11 +531,21 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_failure_not, length, FL_status_string_failure_not_length) == F_equal_to) {
+        *code = F_failure_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_fork, length, FL_status_string_fork_length) == F_equal_to) {
         *code = F_fork;
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_fork_not, length, FL_status_string_fork_not_length) == F_equal_to) {
+        *code = F_fork_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_found, length, FL_status_string_found_length) == F_equal_to) {
         *code = F_found;
         return F_none;
@@ -476,13 +556,13 @@ extern "C" {
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_incomplete, length, FL_status_string_incomplete_length) == F_equal_to) {
-        *code = F_incomplete;
+      if (fl_string_compare(string, FL_status_string_input, length, FL_status_string_input_length) == F_equal_to) {
+        *code = F_input;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_input, length, FL_status_string_input_length) == F_equal_to) {
-        *code = F_input;
+      if (fl_string_compare(string, FL_status_string_input_not, length, FL_status_string_input_not_length) == F_equal_to) {
+        *code = F_input_not;
         return F_none;
       }
 
@@ -491,18 +571,23 @@ extern "C" {
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_interrupted, length, FL_status_string_interrupted_length) == F_equal_to) {
-        *code = F_interrupted;
+      if (fl_string_compare(string, FL_status_string_interrupt, length, FL_status_string_interrupt_length) == F_equal_to) {
+        *code = F_interrupt;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_invalid, length, FL_status_string_invalid_length) == F_equal_to) {
-        *code = F_invalid;
+      if (fl_string_compare(string, FL_status_string_interrupt_not, length, FL_status_string_interrupt_not_length) == F_equal_to) {
+        *code = F_interrupt_not;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_output, length, FL_status_string_output_length) == F_equal_to) {
-        *code = F_output;
+      if (fl_string_compare(string, FL_status_string_known, length, FL_status_string_known_length) == F_equal_to) {
+        *code = F_known;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_known_not, length, FL_status_string_known_not_length) == F_equal_to) {
+        *code = F_known_not;
         return F_none;
       }
 
@@ -531,18 +616,18 @@ extern "C" {
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_maybe, length, FL_status_string_maybe_length) == F_equal_to) {
-        *code = F_maybe;
+      if (fl_string_compare(string, FL_status_string_loop_not, length, FL_status_string_loop_not_length) == F_equal_to) {
+        *code = F_loop_not;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_memory, length, FL_status_string_memory_length) == F_equal_to) {
-        *code = F_memory;
+      if (fl_string_compare(string, FL_status_string_maybe, length, FL_status_string_maybe_length) == F_equal_to) {
+        *code = F_maybe;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_memory_out, length, FL_status_string_memory_out_length) == F_equal_to) {
-        *code = F_memory_not;
+      if (fl_string_compare(string, FL_status_string_maybe_not, length, FL_status_string_maybe_not_length) == F_equal_to) {
+        *code = F_maybe_not;
         return F_none;
       }
 
@@ -551,33 +636,58 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_mount_not, length, FL_status_string_mount_not_length) == F_equal_to) {
+        *code = F_mount_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_name, length, FL_status_string_name_length) == F_equal_to) {
         *code = F_name;
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_name_not, length, FL_status_string_name_not_length) == F_equal_to) {
+        *code = F_name_not;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_output, length, FL_status_string_output_length) == F_equal_to) {
+        *code = F_output;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_output_not, length, FL_status_string_output_not_length) == F_equal_to) {
+        *code = F_output_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_parameter, length, FL_status_string_parameter_length) == F_equal_to) {
         *code = F_parameter;
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_parameter_not, length, FL_status_string_parameter_not_length) == F_equal_to) {
+        *code = F_parameter_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_pipe, length, FL_status_string_pipe_length) == F_equal_to) {
         *code = F_pipe;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_port, length, FL_status_string_port_length) == F_equal_to) {
-        *code = F_port;
+      if (fl_string_compare(string, FL_status_string_pipe_not, length, FL_status_string_pipe_not_length) == F_equal_to) {
+        *code = F_pipe_not;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_process, length, FL_status_string_process_length) == F_equal_to) {
-        *code = F_process;
+      if (fl_string_compare(string, FL_status_string_port, length, FL_status_string_port_length) == F_equal_to) {
+        *code = F_port;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_process_too_many, length, FL_status_string_process_too_many_length) == F_equal_to) {
-        *code = F_process_too_many;
+      if (fl_string_compare(string, FL_status_string_port_not, length, FL_status_string_port_not_length) == F_equal_to) {
+        *code = F_port_not;
         return F_none;
       }
 
@@ -586,6 +696,11 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_prohibited_not, length, FL_status_string_prohibited_not_length) == F_equal_to) {
+        *code = F_prohibited_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_range, length, FL_status_string_range_length) == F_equal_to) {
         *code = F_range;
         return F_none;
@@ -596,6 +711,16 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_read, length, FL_status_string_read_length) == F_equal_to) {
+        *code = F_read;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_read_not, length, FL_status_string_read_not_length) == F_equal_to) {
+        *code = F_read_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_read_only, length, FL_status_string_read_only_length) == F_equal_to) {
         *code = F_read_only;
         return F_none;
@@ -606,11 +731,21 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_recurse_not, length, FL_status_string_recurse_not_length) == F_equal_to) {
+        *code = F_recurse_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_relative, length, FL_status_string_relative_length) == F_equal_to) {
         *code = F_relative;
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_relative_not, length, FL_status_string_relative_not_length) == F_equal_to) {
+        *code = F_relative_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_resource, length, FL_status_string_resource_length) == F_equal_to) {
         *code = F_resource;
         return F_none;
@@ -626,11 +761,21 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_search_not, length, FL_status_string_search_not_length) == F_equal_to) {
+        *code = F_search_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_signal, length, FL_status_string_signal_length) == F_equal_to) {
         *code = F_signal;
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_signal_not, length, FL_status_string_signal_not_length) == F_equal_to) {
+        *code = F_signal_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_space, length, FL_status_string_space_length) == F_equal_to) {
         *code = F_space;
         return F_none;
@@ -646,18 +791,48 @@ extern "C" {
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_syntax, length, FL_status_string_syntax_length) == F_equal_to) {
-        *code = F_syntax;
+      if (fl_string_compare(string, FL_status_string_stop_not, length, FL_status_string_stop_not_length) == F_equal_to) {
+        *code = F_stop_not;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unknown, length, FL_status_string_unknown_length) == F_equal_to) {
-        *code = F_unknown;
+      if (fl_string_compare(string, FL_status_string_string, length, FL_status_string_string_length) == F_equal_to) {
+        *code = F_string;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unsupported, length, FL_status_string_unsupported_length) == F_equal_to) {
-        *code = F_unsupported;
+      if (fl_string_compare(string, FL_status_string_string_not, length, FL_status_string_string_not_length) == F_equal_to) {
+        *code = F_string_not;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_string_too_large, length, FL_status_string_string_too_large_length) == F_equal_to) {
+        *code = F_string_too_large;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_string_too_small, length, FL_status_string_string_too_small_length) == F_equal_to) {
+        *code = F_string_too_small;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_supported, length, FL_status_string_supported_length) == F_equal_to) {
+        *code = F_supported;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_supported_not, length, FL_status_string_supported_not_length) == F_equal_to) {
+        *code = F_supported_not;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_syntax, length, FL_status_string_syntax_length) == F_equal_to) {
+        *code = F_syntax;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_syntax_not, length, FL_status_string_syntax_not_length) == F_equal_to) {
+        *code = F_syntax_not;
         return F_none;
       }
 
@@ -671,6 +846,16 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_valid, length, FL_status_string_valid_length) == F_equal_to) {
+        *code = F_valid;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_valid_not, length, FL_status_string_valid_not_length) == F_equal_to) {
+        *code = F_valid_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_value, length, FL_status_string_value_length) == F_equal_to) {
         *code = F_value;
         return F_none;
@@ -686,6 +871,21 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_warn_not, length, FL_status_string_warn_not_length) == F_equal_to) {
+        *code = F_warn_not;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_write, length, FL_status_string_write_length) == F_equal_to) {
+        *code = F_write;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_write_not, length, FL_status_string_write_not_length) == F_equal_to) {
+        *code = F_write_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_write_only, length, FL_status_string_write_only_length) == F_equal_to) {
         *code = F_write_only;
         return F_none;
@@ -698,6 +898,11 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_array_not, length, FL_status_string_array_not_length) == F_equal_to) {
+        *code = F_array_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_array_too_large, length, FL_status_string_array_too_large_length) == F_equal_to) {
         *code = F_array_too_large;
         return F_none;
@@ -709,89 +914,99 @@ extern "C" {
       }
     #endif // _di_F_status_array_
 
-    #ifndef _di_F_status_busy_
-      if (fl_string_compare(string, FL_status_string_busy, length, FL_status_string_busy_length) == F_equal_to) {
-        *code = F_busy;
+    #ifndef _di_F_status_available_
+      if (fl_string_compare(string, FL_status_string_available, length, FL_status_string_available_length) == F_equal_to) {
+        *code = F_available;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_busy_address, length, FL_status_string_busy_address_length) == F_equal_to) {
-        *code = F_busy_address;
+      if (fl_string_compare(string, FL_status_string_available_not, length, FL_status_string_available_not_length) == F_equal_to) {
+        *code = F_available_not;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_busy_buffer, length, FL_status_string_busy_buffer_length) == F_equal_to) {
-        *code = F_busy_buffer;
+      if (fl_string_compare(string, FL_status_string_available_not_address, length, FL_status_string_available_not_address_length) == F_equal_to) {
+        *code = F_available_not_address;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_busy_device, length, FL_status_string_busy_device_length) == F_equal_to) {
-        *code = F_busy_device;
+      if (fl_string_compare(string, FL_status_string_available_not_buffer, length, FL_status_string_available_not_buffer_length) == F_equal_to) {
+        *code = F_available_not_buffer;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_busy_pipe, length, FL_status_string_busy_pipe_length) == F_equal_to) {
-        *code = F_busy_pipe;
+      if (fl_string_compare(string, FL_status_string_available_not_device, length, FL_status_string_available_not_device_length) == F_equal_to) {
+        *code = F_available_not_device;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_busy_port, length, FL_status_string_busy_port_length) == F_equal_to) {
-        *code = F_busy_port;
+      if (fl_string_compare(string, FL_status_string_available_not_pipe, length, FL_status_string_available_not_pipe_length) == F_equal_to) {
+        *code = F_available_not_pipe;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_busy_process, length, FL_status_string_busy_process_length) == F_equal_to) {
-        *code = F_busy_process;
+      if (fl_string_compare(string, FL_status_string_available_not_port, length, FL_status_string_available_not_port_length) == F_equal_to) {
+        *code = F_available_not_port;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_busy_socket, length, FL_status_string_busy_socket_length) == F_equal_to) {
-        *code = F_busy_socket;
+      if (fl_string_compare(string, FL_status_string_available_not_process, length, FL_status_string_available_not_process_length) == F_equal_to) {
+        *code = F_available_not_process;
         return F_none;
       }
-    #endif // _di_F_status_busy_
 
-    #ifndef _di_F_status_unavailable_
-      if (fl_string_compare(string, FL_status_string_unavailable, length, FL_status_string_unavailable_length) == F_equal_to) {
-        *code = F_unavailable;
+      if (fl_string_compare(string, FL_status_string_available_not_socket, length, FL_status_string_available_not_socket_length) == F_equal_to) {
+        *code = F_available_not_socket;
         return F_none;
       }
+    #endif // _di_F_status_available_
 
-      if (fl_string_compare(string, FL_status_string_unavailable_address, length, FL_status_string_unavailable_address_length) == F_equal_to) {
-        *code = F_unavailable_address;
+    #ifndef _di_F_status_busy_
+      if (fl_string_compare(string, FL_status_string_busy, length, FL_status_string_busy_length) == F_equal_to) {
+        *code = F_busy;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unavailable_buffer, length, FL_status_string_unavailable_buffer_length) == F_equal_to) {
-        *code = F_unavailable_buffer;
+      if (fl_string_compare(string, FL_status_string_busy_address, length, FL_status_string_busy_address_length) == F_equal_to) {
+        *code = F_busy_address;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unavailable_device, length, FL_status_string_unavailable_device_length) == F_equal_to) {
-        *code = F_unavailable_device;
+      if (fl_string_compare(string, FL_status_string_busy_buffer, length, FL_status_string_busy_buffer_length) == F_equal_to) {
+        *code = F_busy_buffer;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unavailable_pipe, length, FL_status_string_unavailable_pipe_length) == F_equal_to) {
-        *code = F_unavailable_pipe;
+      if (fl_string_compare(string, FL_status_string_busy_device, length, FL_status_string_busy_device_length) == F_equal_to) {
+        *code = F_busy_device;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unavailable_port, length, FL_status_string_unavailable_port_length) == F_equal_to) {
-        *code = F_unavailable_port;
+      if (fl_string_compare(string, FL_status_string_busy_not, length, FL_status_string_busy_not_length) == F_equal_to) {
+        *code = F_busy_not;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unavailable_process, length, FL_status_string_unavailable_process_length) == F_equal_to) {
-        *code = F_unavailable_process;
+      if (fl_string_compare(string, FL_status_string_busy_pipe, length, FL_status_string_busy_pipe_length) == F_equal_to) {
+        *code = F_busy_pipe;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_busy_port, length, FL_status_string_busy_port_length) == F_equal_to) {
+        *code = F_busy_port;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_busy_process, length, FL_status_string_busy_process_length) == F_equal_to) {
+        *code = F_busy_process;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unavailable_socket, length, FL_status_string_unavailable_socket_length) == F_equal_to) {
-        *code = F_unavailable_socket;
+      if (fl_string_compare(string, FL_status_string_busy_socket, length, FL_status_string_busy_socket_length) == F_equal_to) {
+        *code = F_busy_socket;
         return F_none;
       }
-    #endif // _di_F_status_unavailable_
+    #endif // _di_F_status_busy_
 
     #ifndef _di_F_status_number_
       if (fl_string_compare(string, FL_status_string_number, length, FL_status_string_number_length) == F_equal_to) {
@@ -804,6 +1019,11 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_number_decimal_not, length, FL_status_string_number_decimal_not_length) == F_equal_to) {
+        *code = F_number_decimal_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_number_divide_by_zero, length, FL_status_string_number_divide_by_zero_length) == F_equal_to) {
         *code = F_number_divide_by_zero;
         return F_none;
@@ -814,6 +1034,16 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_number_negative_not, length, FL_status_string_number_negative_not_length) == F_equal_to) {
+        *code = F_number_negative_not;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_number_not, length, FL_status_string_number_not_length) == F_equal_to) {
+        *code = F_number_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_number_overflow, length, FL_status_string_number_overflow_length) == F_equal_to) {
         *code = F_number_overflow;
         return F_none;
@@ -824,6 +1054,11 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_number_positive_not, length, FL_status_string_number_positive_not_length) == F_equal_to) {
+        *code = F_number_positive_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_number_underflow, length, FL_status_string_number_underflow_length) == F_equal_to) {
         *code = F_number_underflow;
         return F_none;
@@ -834,10 +1069,20 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_number_whole_not, length, FL_status_string_number_whole_not_length) == F_equal_to) {
+        *code = F_number_whole_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_number_zero, length, FL_status_string_number_zero_length) == F_equal_to) {
         *code = F_number_zero;
         return F_none;
       }
+
+      if (fl_string_compare(string, FL_status_string_number_zero_not, length, FL_status_string_number_zero_not_length) == F_equal_to) {
+        *code = F_number_zero_not;
+        return F_none;
+      }
     #endif // _di_F_status_number_
 
     #ifndef _di_F_status_buffer_
@@ -846,8 +1091,8 @@ extern "C" {
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_buffer_too_small, length, FL_status_string_buffer_too_small_length) == F_equal_to) {
-        *code = F_buffer_too_small;
+      if (fl_string_compare(string, FL_status_string_buffer_not, length, FL_status_string_buffer_not_length) == F_equal_to) {
+        *code = F_buffer_not;
         return F_none;
       }
 
@@ -856,33 +1101,38 @@ extern "C" {
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_incomplete_utf, length, FL_status_string_incomplete_utf_length) == F_equal_to) {
-        *code = F_incomplete_utf;
+      if (fl_string_compare(string, FL_status_string_buffer_too_small, length, FL_status_string_buffer_too_small_length) == F_equal_to) {
+        *code = F_buffer_too_small;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_complete_not_utf, length, FL_status_string_complete_not_utf_length) == F_equal_to) {
+        *code = F_complete_not_utf;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_incomplete_utf_block, length, FL_status_string_incomplete_utf_block_length) == F_equal_to) {
-        *code = F_incomplete_utf_block;
+      if (fl_string_compare(string, FL_status_string_complete_not_utf_block, length, FL_status_string_complete_not_utf_block_length) == F_equal_to) {
+        *code = F_complete_not_utf_block;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_incomplete_utf_eof, length, FL_status_string_incomplete_utf_eof_length) == F_equal_to) {
-        *code = F_incomplete_utf_eof;
+      if (fl_string_compare(string, FL_status_string_complete_not_utf_eof, length, FL_status_string_complete_not_utf_eof_length) == F_equal_to) {
+        *code = F_complete_not_utf_eof;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_incomplete_utf_eol, length, FL_status_string_incomplete_utf_eol_length) == F_equal_to) {
-        *code = F_incomplete_utf_eol;
+      if (fl_string_compare(string, FL_status_string_complete_not_utf_eol, length, FL_status_string_complete_not_utf_eol_length) == F_equal_to) {
+        *code = F_complete_not_utf_eol;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_incomplete_utf_eos, length, FL_status_string_incomplete_utf_eos_length) == F_equal_to) {
-        *code = F_incomplete_utf_eos;
+      if (fl_string_compare(string, FL_status_string_complete_not_utf_eos, length, FL_status_string_complete_not_utf_eos_length) == F_equal_to) {
+        *code = F_complete_not_utf_eos;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_incomplete_utf_stop, length, FL_status_string_incomplete_utf_stop_length) == F_equal_to) {
-        *code = F_incomplete_utf_stop;
+      if (fl_string_compare(string, FL_status_string_complete_not_utf_stop, length, FL_status_string_complete_not_utf_stop_length) == F_equal_to) {
+        *code = F_complete_not_utf_stop;
         return F_none;
       }
 
@@ -946,108 +1196,108 @@ extern "C" {
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_string_too_small, length, FL_status_string_string_too_small_length) == F_equal_to) {
-        *code = F_string_too_small;
+      if (fl_string_compare(string, FL_status_string_terminated, length, FL_status_string_terminated_length) == F_equal_to) {
+        *code = F_terminated;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_string_too_large, length, FL_status_string_string_too_large_length) == F_equal_to) {
-        *code = F_string_too_large;
+      if (fl_string_compare(string, FL_status_string_terminated_not, length, FL_status_string_terminated_not_length) == F_equal_to) {
+        *code = F_terminated_not;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unterminated, length, FL_status_string_unterminated_length) == F_equal_to) {
-        *code = F_unterminated;
+      if (fl_string_compare(string, FL_status_string_terminated_not_block, length, FL_status_string_terminated_not_block_length) == F_equal_to) {
+        *code = F_terminated_not_block;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unterminated_block, length, FL_status_string_unterminated_block_length) == F_equal_to) {
-        *code = F_unterminated_block;
+      if (fl_string_compare(string, FL_status_string_terminated_not_eof, length, FL_status_string_terminated_not_eof_length) == F_equal_to) {
+        *code = F_terminated_not_eof;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unterminated_eof, length, FL_status_string_unterminated_eof_length) == F_equal_to) {
-        *code = F_unterminated_eof;
+      if (fl_string_compare(string, FL_status_string_terminated_not_eol, length, FL_status_string_terminated_not_eol_length) == F_equal_to) {
+        *code = F_terminated_not_eol;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unterminated_eol, length, FL_status_string_unterminated_eol_length) == F_equal_to) {
-        *code = F_unterminated_eol;
+      if (fl_string_compare(string, FL_status_string_terminated_not_eos, length, FL_status_string_terminated_not_eos_length) == F_equal_to) {
+        *code = F_terminated_not_eos;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unterminated_eos, length, FL_status_string_unterminated_eos_length) == F_equal_to) {
-        *code = F_unterminated_eos;
+      if (fl_string_compare(string, FL_status_string_terminated_not_group, length, FL_status_string_terminated_not_group_length) == F_equal_to) {
+        *code = F_terminated_not_group;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unterminated_stop, length, FL_status_string_unterminated_stop_length) == F_equal_to) {
-        *code = F_unterminated_stop;
+      if (fl_string_compare(string, FL_status_string_terminated_not_group_block, length, FL_status_string_terminated_not_group_block_length) == F_equal_to) {
+        *code = F_terminated_not_group_block;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unterminated_group, length, FL_status_string_unterminated_group_length) == F_equal_to) {
-        *code = F_unterminated_group;
+      if (fl_string_compare(string, FL_status_string_terminated_not_group_eof, length, FL_status_string_terminated_not_group_eof_length) == F_equal_to) {
+        *code = F_terminated_not_group_eof;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unterminated_group_block, length, FL_status_string_unterminated_group_block_length) == F_equal_to) {
-        *code = F_unterminated_group_block;
+      if (fl_string_compare(string, FL_status_string_terminated_not_group_eol, length, FL_status_string_terminated_not_group_eol_length) == F_equal_to) {
+        *code = F_terminated_not_group_eol;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unterminated_group_eof, length, FL_status_string_unterminated_group_eof_length) == F_equal_to) {
-        *code = F_unterminated_group_eof;
+      if (fl_string_compare(string, FL_status_string_terminated_not_group_eos, length, FL_status_string_terminated_not_group_eos_length) == F_equal_to) {
+        *code = F_terminated_not_group_eos;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unterminated_group_eol, length, FL_status_string_unterminated_group_eol_length) == F_equal_to) {
-        *code = F_unterminated_group_eol;
+      if (fl_string_compare(string, FL_status_string_terminated_not_group_stop, length, FL_status_string_terminated_not_group_stop_length) == F_equal_to) {
+        *code = F_terminated_not_group_stop;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unterminated_group_eos, length, FL_status_string_unterminated_group_eos_length) == F_equal_to) {
-        *code = F_unterminated_group_eos;
+      if (fl_string_compare(string, FL_status_string_terminated_not_nest, length, FL_status_string_terminated_not_nest_length) == F_equal_to) {
+        *code = F_terminated_not_nest;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unterminated_group_stop, length, FL_status_string_unterminated_group_stop_length) == F_equal_to) {
-        *code = F_unterminated_group_stop;
+      if (fl_string_compare(string, FL_status_string_terminated_not_nest_block, length, FL_status_string_terminated_not_nest_block_length) == F_equal_to) {
+        *code = F_terminated_not_nest_block;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unterminated_nest, length, FL_status_string_unterminated_nest_length) == F_equal_to) {
-        *code = F_unterminated_nest;
+      if (fl_string_compare(string, FL_status_string_terminated_not_nest_eof, length, FL_status_string_terminated_not_nest_eof_length) == F_equal_to) {
+        *code = F_terminated_not_nest_eof;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unterminated_nest_block, length, FL_status_string_unterminated_nest_block_length) == F_equal_to) {
-        *code = F_unterminated_nest_block;
+      if (fl_string_compare(string, FL_status_string_terminated_not_nest_eol, length, FL_status_string_terminated_not_nest_eol_length) == F_equal_to) {
+        *code = F_terminated_not_nest_eol;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unterminated_nest_eof, length, FL_status_string_unterminated_nest_eof_length) == F_equal_to) {
-        *code = F_unterminated_nest_eof;
+      if (fl_string_compare(string, FL_status_string_terminated_not_nest_eos, length, FL_status_string_terminated_not_nest_eos_length) == F_equal_to) {
+        *code = F_terminated_not_nest_eos;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unterminated_nest_eol, length, FL_status_string_unterminated_nest_eol_length) == F_equal_to) {
-        *code = F_unterminated_nest_eol;
+      if (fl_string_compare(string, FL_status_string_terminated_not_nest_stop, length, FL_status_string_terminated_not_nest_stop_length) == F_equal_to) {
+        *code = F_terminated_not_nest_stop;
         return F_none;
       }
 
-      if (fl_string_compare(string, FL_status_string_unterminated_nest_eos, length, FL_status_string_unterminated_nest_eos_length) == F_equal_to) {
-        *code = F_unterminated_nest_eos;
+      if (fl_string_compare(string, FL_status_string_terminated_not_stop, length, FL_status_string_terminated_not_stop_length) == F_equal_to) {
+        *code = F_terminated_not_stop;
         return F_none;
       }
+    #endif // _di_F_status_buffer_
 
-      if (fl_string_compare(string, FL_status_string_unterminated_nest_stop, length, FL_status_string_unterminated_nest_stop_length) == F_equal_to) {
-        *code = F_unterminated_nest_stop;
+    #ifndef _di_F_status_memory_
+      if (fl_string_compare(string, FL_status_string_memory, length, FL_status_string_memory_length) == F_equal_to) {
+        *code = F_memory;
         return F_none;
       }
-    #endif // _di_F_status_buffer_
 
-    #ifndef _di_F_status_memory_
       if (fl_string_compare(string, FL_status_string_memory_allocation, length, FL_status_string_memory_allocation_length) == F_equal_to) {
         *code = F_memory_allocation;
         return F_none;
@@ -1058,12 +1308,34 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_memory_not, length, FL_status_string_memory_not_length) == F_equal_to) {
+        *code = F_memory_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_memory_reallocation, length, FL_status_string_memory_reallocation_length) == F_equal_to) {
         *code = F_memory_reallocation;
         return F_none;
       }
     #endif // _di_F_status_memory_
 
+    #ifndef _di_F_status_process_
+      if (fl_string_compare(string, FL_status_string_process, length, FL_status_string_process_length) == F_equal_to) {
+        *code = F_process;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_process_not, length, FL_status_string_process_not_length) == F_equal_to) {
+        *code = F_process_not;
+        return F_none;
+      }
+
+      if (fl_string_compare(string, FL_status_string_process_too_many, length, FL_status_string_process_too_many_length) == F_equal_to) {
+        *code = F_process_too_many;
+        return F_none;
+      }
+    #endif // _di_F_status_process_
+
     #ifndef _di_F_status_file_
       if (fl_string_compare(string, FL_status_string_file, length, FL_status_string_file_length) == F_equal_to) {
         *code = F_file;
@@ -1120,6 +1392,11 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_file_not, length, FL_status_string_file_not_length) == F_equal_to) {
+        *code = F_file_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_file_open, length, FL_status_string_file_open_length) == F_equal_to) {
         *code = F_file_open;
         return F_none;
@@ -1272,6 +1549,11 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_filesystem_not, length, FL_status_string_filesystem_not_length) == F_equal_to) {
+        *code = F_filesystem_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_filesystem_quota_block, length, FL_status_string_filesystem_quota_block_length) == F_equal_to) {
         *code = F_filesystem_quota_block;
         return F_none;
@@ -1334,6 +1616,11 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_directory_not, length, FL_status_string_directory_not_length) == F_equal_to) {
+        *code = F_directory_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_directory_open, length, FL_status_string_directory_open_length) == F_equal_to) {
         *code = F_directory_open;
         return F_none;
@@ -1391,6 +1678,11 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_socket_not, length, FL_status_string_socket_not_length) == F_equal_to) {
+        *code = F_socket_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_socket_receive, length, FL_status_string_socket_receive_length) == F_equal_to) {
         *code = F_socket_receive;
         return F_none;
@@ -1525,6 +1817,11 @@ extern "C" {
         return F_none;
       }
 
+      if (fl_string_compare(string, FL_status_string_access_not, length, FL_status_string_access_not_length) == F_equal_to) {
+        *code = F_access_not;
+        return F_none;
+      }
+
       if (fl_string_compare(string, FL_status_string_access_owner, length, FL_status_string_access_owner_length) == F_equal_to) {
         *code = F_access_owner;
         return F_none;
index 61c30fa6e2f739eda2223c02fabfa8f53b866952..2bfb625adcf23accbef91bd8e4cfb3c3972d535a 100644 (file)
@@ -97,7 +97,7 @@ extern "C" {
       return F_status_set_error(F_access);
     }
 
-    if (status == F_incomplete_utf || status == F_incomplete_utf_block || status == F_incomplete_utf_eof || status == F_incomplete_utf_eol || status == F_incomplete_utf_eos || status == F_incomplete_utf_stop) {
+    if (status == F_complete_not_utf || status == F_complete_not_utf_block || status == F_complete_not_utf_eof || status == F_complete_not_utf_eol || status == F_complete_not_utf_eos || status == F_complete_not_utf_stop) {
       return F_status_set_error(F_encoding);
     }
 
@@ -105,11 +105,11 @@ extern "C" {
       return F_status_set_error(F_number);
     }
 
-    if (status == F_parameter || status == F_found_not || status == F_interrupted) {
+    if (status == F_parameter || status == F_found_not || status == F_interrupt) {
       return F_status_set_error(status);
     }
 
-    return F_status_set_error(F_invalid);
+    return F_status_set_error(F_valid_not);
   }
 #endif // _di_controller_status_simplify_
 
index 5374ad2fddf2cb3faa052a2d925c0ae1e2335fd3..ae5c962dee02e70dfcd0ae9a1131029332def89b 100644 (file)
@@ -119,7 +119,7 @@ extern "C" {
   #define controller_rule_action_t_initialize \
     { \
       0, \
-      F_unknown, \
+      F_known_not, \
       f_string_dynamics_t_initialize, \
     }
 
@@ -248,7 +248,7 @@ extern "C" {
 
   #define controller_rule_t_initialize \
     { \
-      F_unknown, \
+      F_known_not, \
       f_string_dynamic_t_initialize, \
       f_string_dynamic_t_initialize, \
       f_string_dynamic_t_initialize, \
@@ -340,7 +340,7 @@ extern "C" {
       0, \
       0, \
       0, \
-      F_unknown, \
+      F_known_not, \
       f_string_dynamics_t_initialize, \
     }
 
@@ -432,7 +432,7 @@ extern "C" {
 
   #define controller_entry_t_initialize \
     { \
-      F_unknown, \
+      F_known_not, \
       controller_entry_items_t_initialize, \
     }
 
index 2c3468e0ea5f78f18b3ef5b25b90b4e33a5806ae..28a5f58fbab8d9e1fe81224e4ca3a39c525ce012 100644 (file)
@@ -85,7 +85,7 @@ extern "C" {
       action->code = 0;
       action->line = cache->line_action;
       action->timeout = 0;
-      action->status = F_unknown;
+      action->status = F_known_not;
       action->parameters.used = 0;
 
       status = f_fss_count_lines(cache->buffer_file, cache->object_actions.array[i].start, &cache->line_action);
@@ -351,7 +351,7 @@ extern "C" {
               }
               else {
                 if (action->status == F_none) {
-                  action->status = F_status_set_error(F_unsupported);
+                  action->status = F_status_set_error(F_supported_not);
 
                   if (F_status_is_error_not(status_action)) {
                     status_action = action->status;
@@ -377,7 +377,7 @@ extern "C" {
             if (fl_string_dynamic_compare_string(controller_string_kill, action->parameters.array[0], controller_string_kill_length) == F_equal_to_not) {
               if (fl_string_dynamic_compare_string(controller_string_start, action->parameters.array[0], controller_string_start_length) == F_equal_to_not) {
                 if (fl_string_dynamic_compare_string(controller_string_stop, action->parameters.array[0], controller_string_stop_length) == F_equal_to_not) {
-                  action->status = F_status_set_error(F_unsupported);
+                  action->status = F_status_set_error(F_supported_not);
 
                   if (F_status_is_error_not(status_action)) {
                     status_action = action->status;
@@ -501,7 +501,7 @@ extern "C" {
   f_return_status controller_entry_read(const controller_data_t data, const controller_setting_t setting, const f_string_static_t entry_name, controller_entry_cache_t *cache, controller_entry_t *entry) {
     f_status_t status = F_none;
 
-    entry->status = F_unknown;
+    entry->status = F_known_not;
     entry->items.used = 0;
 
     cache->line_action = 0;
index 349eea0834679cd03b7d1dd2cc81fdbfcaedeef8..1e0a4aa8f60add11c88eb83360351c975c1c7db5 100644 (file)
@@ -146,7 +146,7 @@ extern "C" {
 
               actions->array[actions->used].line += item->line;
               actions->array[actions->used].parameters.used = 0;
-              actions->array[actions->used].status = F_unknown;
+              actions->array[actions->used].status = F_known_not;
 
               status = fl_string_dynamics_increase(&actions->array[actions->used].parameters);
 
@@ -199,7 +199,7 @@ extern "C" {
             else {
               actions->array[0].line += item->line;
               actions->array[0].parameters.used = 0;
-              actions->array[0].status = F_unknown;
+              actions->array[0].status = F_known_not;
 
               status = controller_rule_action_read(data, cache->buffer_item, 0, &cache->content_action, &actions->array[0]);
 
@@ -397,7 +397,7 @@ extern "C" {
               fprintf(data.error.to.stream, "%s%sFSS Extended List is not allowed for this rule item action type.%s%c", data.error.context.before->string, data.error.prefix ? data.error.prefix : "", data.error.context.after->string, f_string_eol[0]);
             }
 
-            status = F_status_set_error(F_unsupported);
+            status = F_status_set_error(F_supported_not);
             break;
           }
 
@@ -444,7 +444,7 @@ extern "C" {
 
     bool for_item = F_true;
 
-    rule->status = F_unknown;
+    rule->status = F_known_not;
 
     rule->id.used = 0;
     rule->name.used = 0;
@@ -752,7 +752,7 @@ extern "C" {
           controller_rule_error_print(data.error, *cache, F_false);
 
           if (F_status_is_error_not(status_return)) {
-            status_return = F_status_set_error(F_invalid);
+            status_return = F_status_set_error(F_valid_not);
           }
 
           continue;
@@ -841,7 +841,7 @@ extern "C" {
           controller_rule_error_print(data.error, *cache, F_false);
 
           if (F_status_is_error_not(status_return)) {
-            status_return = F_status_set_error(F_invalid);
+            status_return = F_status_set_error(F_valid_not);
           }
 
           continue;
@@ -871,7 +871,7 @@ extern "C" {
 
           status = controller_validate_has_graph(*setting_value);
 
-          if (status == F_false || F_status_set_fine(status) == F_incomplete_utf) {
+          if (status == F_false || F_status_set_fine(status) == F_complete_not_utf) {
             if (status == F_false) {
               fprintf(data.error.to.stream, "%c", f_string_eol[0]);
               fprintf(data.error.to.stream, "%s%sRule setting has an invalid name '", data.error.context.before->string, data.error.prefix ? data.error.prefix : "");
@@ -881,13 +881,13 @@ extern "C" {
               controller_rule_error_print(data.error, *cache, F_false);
 
               if (F_status_is_error_not(status_return)) {
-                status_return = F_status_set_error(F_invalid);
+                status_return = F_status_set_error(F_valid_not);
               }
             }
             else {
 
-              // this function should only return F_incomplete_utf on error.
-              fll_error_print(data.error, F_incomplete_utf, "controller_validate_has_graph", F_true);
+              // this function should only return F_complete_not_utf on error.
+              fll_error_print(data.error, F_complete_not_utf, "controller_validate_has_graph", F_true);
 
               if (F_status_is_error_not(status_return)) {
                 status_return = status;
@@ -969,7 +969,7 @@ extern "C" {
 
           status = controller_validate_environment_name(setting_values->array[setting_values->used]);
 
-          if (status == F_false || F_status_set_fine(status) == F_incomplete_utf) {
+          if (status == F_false || F_status_set_fine(status) == F_complete_not_utf) {
             if (status == F_false) {
               fprintf(data.error.to.stream, "%c", f_string_eol[0]);
               fprintf(data.error.to.stream, "%s%sRule setting has an invalid environment variable name '", data.error.context.before->string, data.error.prefix ? data.error.prefix : "");
@@ -979,13 +979,13 @@ extern "C" {
               controller_rule_error_print(data.error, *cache, F_false);
 
               if (F_status_is_error_not(status_return)) {
-                status_return = F_status_set_error(F_invalid);
+                status_return = F_status_set_error(F_valid_not);
               }
             }
             else {
 
-              // this function should only return F_incomplete_utf on error.
-              fll_error_print(data.error, F_incomplete_utf, "controller_validate_environment_name", F_true);
+              // this function should only return F_complete_not_utf on error.
+              fll_error_print(data.error, F_complete_not_utf, "controller_validate_environment_name", F_true);
 
               if (F_status_is_error_not(status_return)) {
                 status_return = status;
@@ -1011,7 +1011,7 @@ extern "C" {
         controller_rule_error_print(data.error, *cache, F_false);
 
         if (F_status_is_error_not(status_return)) {
-          status_return = F_status_set_error(F_invalid);
+          status_return = F_status_set_error(F_valid_not);
         }
 
         continue;
index 8007bb48394c2bf798125944d006c1a7645df037..e90683189f1a0f4e46a09d0490c7dbc3f0982a2f 100644 (file)
@@ -283,7 +283,7 @@ extern "C" {
  *
  * @return
  *    F_none on success.
- *    F_invalid (with error bit) on success but there were one or more invalid settings encountered.
+ *    F_valid_not (with error bit) on success but there were one or more invalid settings encountered.
  *
  *   Errors (with error bit) from: fl_string_dynamic_partial_append_nulless().
  *   Errors (with error bit) from: fl_string_dynamic_rip_nulless().
index 8e550ca8376d8baea553f6e7d4bf7959eaa5d423..8db25f27503b25c5b23c91c24d7c9a20a72528d9 100644 (file)
@@ -642,7 +642,7 @@ extern "C" {
                 status = f_utf_is_word_dash_plus(arguments.argv[location] + j, width_max, F_false);
 
                 if (F_status_is_error(status)) {
-                  if (fll_error_print(data->error, F_status_set_fine(status), "f_utf_is_word_dash_plus", F_false) == F_unknown && data->error.verbosity != f_console_verbosity_quiet) {
+                  if (fll_error_print(data->error, F_status_set_fine(status), "f_utf_is_word_dash_plus", F_false) == F_known_not && data->error.verbosity != f_console_verbosity_quiet) {
                     fprintf(data->error.to.stream, "%c", f_string_eol[0]);
                     fl_color_print(data->error.to.stream, data->context.set.error, "%sFailed to process the parameter '", fll_error_print_error);
                     fl_color_print(data->error.to.stream, data->context.set.notable, "%s%s", f_console_symbol_long_enable, fake_long_process);
@@ -768,7 +768,7 @@ extern "C" {
           status = fl_console_parameter_to_string_dynamic_directory(arguments.argv[data->parameters[parameters_id[i]].values.array[0]], parameters_value[i]);
 
           if (F_status_is_error(status)) {
-            if (fll_error_print(data->error, F_status_set_fine(status), "fl_console_parameter_to_string_dynamic_directory", F_false) == F_unknown && data->error.verbosity != f_console_verbosity_quiet) {
+            if (fll_error_print(data->error, F_status_set_fine(status), "fl_console_parameter_to_string_dynamic_directory", F_false) == F_known_not && data->error.verbosity != f_console_verbosity_quiet) {
               fprintf(data->error.to.stream, "%c", f_string_eol[0]);
               fl_color_print(data->error.to.stream, data->context.set.error, "%sFailed to process parameter '", fll_error_print_error);
               fl_color_print(data->error.to.stream, data->context.set.notable, "%s%s", f_console_symbol_long_enable, parameters_name[i]);
@@ -782,7 +782,7 @@ extern "C" {
           f_macro_string_dynamic_t_new(status, (*parameters_value[i]), parameter_default_lengths[i]);
 
           if (F_status_is_error(status)) {
-            if (fll_error_print(data->error, F_status_set_fine(status), "f_macro_string_dynamic_t_new", F_false) == F_unknown && data->error.verbosity != f_console_verbosity_quiet) {
+            if (fll_error_print(data->error, F_status_set_fine(status), "f_macro_string_dynamic_t_new", F_false) == F_known_not && data->error.verbosity != f_console_verbosity_quiet) {
               fprintf(data->error.to.stream, "%c", f_string_eol[0]);
               fl_color_print(data->error.to.stream, data->context.set.error, "%sFailed to load default for the parameter '", fll_error_print_error);
               fl_color_print(data->error.to.stream, data->context.set.notable, "%s%s", f_console_symbol_long_enable, parameters_name[i]);
@@ -802,7 +802,7 @@ extern "C" {
       status = fll_program_parameter_additional_rip(arguments.argv, data->parameters[fake_parameter_define].values, &data->define);
 
       if (F_status_is_error(status)) {
-        if (fll_error_print(data->error, F_status_set_fine(status), "fll_program_parameter_additional_rip", F_false) == F_unknown && data->error.verbosity != f_console_verbosity_quiet) {
+        if (fll_error_print(data->error, F_status_set_fine(status), "fll_program_parameter_additional_rip", F_false) == F_known_not && data->error.verbosity != f_console_verbosity_quiet) {
           fprintf(data->error.to.stream, "%c", f_string_eol[0]);
           fl_color_print(data->error.to.stream, data->context.set.error, "%sFailed to process the parameter '", fll_error_print_error);
           fl_color_print(data->error.to.stream, data->context.set.notable, "%s%s", f_console_symbol_long_enable, fake_long_define);
@@ -825,7 +825,7 @@ extern "C" {
           status = f_utf_is_word(data->define.array[i].string + j, width_max, F_false);
 
           if (F_status_is_error(status)) {
-            if (fll_error_print(data->error, F_status_set_fine(status), "f_utf_is_word", F_false) == F_unknown && data->error.verbosity != f_console_verbosity_quiet) {
+            if (fll_error_print(data->error, F_status_set_fine(status), "f_utf_is_word", F_false) == F_known_not && data->error.verbosity != f_console_verbosity_quiet) {
               fprintf(data->error.to.stream, "%c", f_string_eol[0]);
               fl_color_print(data->error.to.stream, data->context.set.error, "%sFailed to process the parameter '", fll_error_print_error);
               fl_color_print(data->error.to.stream, data->context.set.notable, "%s%s", f_console_symbol_long_enable, fake_long_define);
@@ -859,7 +859,7 @@ extern "C" {
       status = fll_program_parameter_additional_rip(arguments.argv, data->parameters[fake_parameter_mode].values, &data->mode);
 
       if (F_status_is_error(status)) {
-        if (fll_error_print(data->error, F_status_set_fine(status), "fll_program_parameter_additional_rip", F_false) == F_unknown && data->error.verbosity != f_console_verbosity_quiet) {
+        if (fll_error_print(data->error, F_status_set_fine(status), "fll_program_parameter_additional_rip", F_false) == F_known_not && data->error.verbosity != f_console_verbosity_quiet) {
           fprintf(data->error.to.stream, "%c", f_string_eol[0]);
           fl_color_print(data->error.to.stream, data->context.set.error, "%sFailed to process the parameter '", fll_error_print_error);
           fl_color_print(data->error.to.stream, data->context.set.notable, "%s%s", f_console_symbol_long_enable, fake_long_mode);
@@ -882,7 +882,7 @@ extern "C" {
           status = f_utf_is_word_dash_plus(data->mode.array[i].string + j, width_max, F_false);
 
           if (F_status_is_error(status)) {
-            if (fll_error_print(data->error, F_status_set_fine(status), "f_utf_is_word_dash_plus", F_false) == F_unknown && data->error.verbosity != f_console_verbosity_quiet) {
+            if (fll_error_print(data->error, F_status_set_fine(status), "f_utf_is_word_dash_plus", F_false) == F_known_not && data->error.verbosity != f_console_verbosity_quiet) {
               fprintf(data->error.to.stream, "%c", f_string_eol[0]);
               fl_color_print(data->error.to.stream, data->context.set.error, "%sFailed to process the parameter '", fll_error_print_error);
               fl_color_print(data->error.to.stream, data->context.set.notable, "%s%s", f_console_symbol_long_enable, fake_long_mode);
index 81f29e72029166a04d91cab5f596a5acc1844e26..8fbe3be3e9ef13acf4a1db3d4baa101ef09a8c70 100644 (file)
@@ -2070,7 +2070,7 @@ extern "C" {
       if (!operation) {
         fake_print_message_section_operation_unknown(data, data_make->error, data_make->buffer, section->name, section->objects.array[i]);
 
-        *status = F_status_set_error(F_invalid);
+        *status = F_status_set_error(F_valid_not);
       }
       else if (operation == fake_make_operation_type_operate) {
         if (section_stack->used == fake_make_section_stack_max) {
index 4a69b02a037d5adc367e5a7371aa07d2df2b065e..8b83d3a783a03972ecf4b4268f60f62388a4a032 100644 (file)
@@ -633,7 +633,7 @@ extern "C" {
  * @param status
  *   The return status.
  *
- *   F_invalid (with error bit set) is returned if any part of the section is invalid, such as an invalid operation name.
+ *   F_valid_not (with error bit set) is returned if any part of the section is invalid, such as an invalid operation name.
  *   F_recurse (with error bit set) is returned if unable to recurse to another operation section (usually max stack depth reached).
  */
 #ifndef _di_fake_make_operate_section_
index 41d455250d3d710ce9b006cfda82ea9d1cb05821..e553ead8ebd5292425a15e4e424b2a9c41ae7055 100644 (file)
@@ -211,7 +211,7 @@ extern "C" {
       return F_false;
     }
 
-    if (fll_error_print(data.error, status, function, F_false) == F_unknown && fallback && data.error.verbosity != f_console_verbosity_quiet) {
+    if (fll_error_print(data.error, status, function, F_false) == F_known_not && fallback && data.error.verbosity != f_console_verbosity_quiet) {
       fprintf(data.error.to.stream, "%c", f_string_eol[0]);
       fl_color_print(data.error.to.stream, data.context.set.error, "UNKNOWN %s(", fll_error_print_error);
       fl_color_print(data.error.to.stream, data.context.set.notable, "%llu", status);
@@ -246,7 +246,7 @@ extern "C" {
       return F_false;
     }
 
-    if (status == F_status_set_error(F_incomplete_utf_stop)) {
+    if (status == F_status_set_error(F_complete_not_utf_stop)) {
       if (data.error.verbosity != f_console_verbosity_quiet) {
         fprintf(data.error.to.stream, "%c", f_string_eol[0]);
         fl_color_print(data.error.to.stream, data.context.set.error, "%serror occurred on invalid UTF-8 character at end of string (at ", fll_error_print_error);
@@ -259,7 +259,7 @@ extern "C" {
       return F_false;
     }
 
-    if (fll_error_print(data.error, status, function, F_false) == F_unknown && fallback && data.error.verbosity != f_console_verbosity_quiet) {
+    if (fll_error_print(data.error, status, function, F_false) == F_known_not && fallback && data.error.verbosity != f_console_verbosity_quiet) {
       fprintf(data.error.to.stream, "%c", f_string_eol[0]);
       fl_color_print(data.error.to.stream, data.context.set.error, "UNKNOWN %s(", fll_error_print_error);
       fl_color_print(data.error.to.stream, data.context.set.notable, "%llu", status);
index 8905c4293ad9b7e212710ae9e63e46c443f4e1cb..5cf16ca528aec7b0d7667b81dea68cee28c57c42 100644 (file)
@@ -83,7 +83,7 @@ extern "C" {
       if (F_status_set_fine(status) == F_none_eol) {
         fss_basic_list_write_error_parameter_unsupported_eol_print(data);
 
-        return F_status_set_error(F_unsupported);
+        return F_status_set_error(F_supported_not);
       }
 
       if (F_status_is_error(status)) {
@@ -237,7 +237,7 @@ extern "C" {
                 fl_color_print(data.error.to.stream, data.context.set.error, "%sThis standard only supports one content per object.%c", fll_error_print_error, f_string_eol[0]);
               }
 
-              status = F_status_set_error(F_unsupported);
+              status = F_status_set_error(F_supported_not);
               break;
             }
 
index 68bcd43cbe02222e0bd5e9f03183bd6c0584c657..4f2a55342a63aea58ffc90e4c485a9550d2a60bc 100644 (file)
@@ -83,7 +83,7 @@ extern "C" {
       if (F_status_set_fine(status) == F_none_eol) {
         fss_basic_write_error_parameter_unsupported_eol_print(data);
 
-        return F_status_set_error(F_unsupported);
+        return F_status_set_error(F_supported_not);
       }
 
       if (F_status_is_error(status)) {
@@ -107,7 +107,7 @@ extern "C" {
       if (F_status_set_fine(status) == F_none_eol) {
         fss_basic_write_error_parameter_unsupported_eol_print(data);
 
-        return F_status_set_error(F_unsupported);
+        return F_status_set_error(F_supported_not);
       }
 
       if (F_status_is_error(status)) {
@@ -249,7 +249,7 @@ extern "C" {
                 fl_color_print(data.error.to.stream, data.context.set.error, "%sThis standard only supports one content per object.%c", fll_error_print_error, f_string_eol[0]);
               }
 
-              status = F_status_set_error(F_unsupported);
+              status = F_status_set_error(F_supported_not);
               break;
             }
 
@@ -267,7 +267,7 @@ extern "C" {
             if (F_status_set_fine(status) == F_none_eol) {
               fss_basic_write_error_parameter_unsupported_eol_print(data);
 
-              status = F_status_set_error(F_unsupported);
+              status = F_status_set_error(F_supported_not);
               break;
             }
 
index e3226df0572ba9bb0adfddc3a67d73bdaf014264..e7af3b707dec48182744fe563378ab809b471f00 100644 (file)
@@ -83,7 +83,7 @@ extern "C" {
       if (F_status_set_fine(status) == F_none_eol) {
         fss_embedded_list_write_error_parameter_unsupported_eol_print(data);
 
-        return F_status_set_error(F_unsupported);
+        return F_status_set_error(F_supported_not);
       }
 
       if (F_status_is_error(status)) {
@@ -242,7 +242,7 @@ extern "C" {
                 fl_color_print(data.error.to.stream, data.context.set.error, "%sThis standard only supports one content per object.%c", fll_error_print_error, f_string_eol[0]);
               }
 
-              status = F_status_set_error(F_unsupported);
+              status = F_status_set_error(F_supported_not);
               break;
             }
 
index 6f3d2b540127f534873d41d9eef2d85b2ed3226c..691e4fd76c6d623b3acdfe9aecaba643fbed34c7 100644 (file)
@@ -83,7 +83,7 @@ extern "C" {
       if (F_status_set_fine(status) == F_none_eol) {
         fss_extended_list_write_error_parameter_unsupported_eol_print(data);
 
-        return F_status_set_error(F_unsupported);
+        return F_status_set_error(F_supported_not);
       }
 
       if (F_status_is_error(status)) {
@@ -242,7 +242,7 @@ extern "C" {
                 fl_color_print(data.error.to.stream, data.context.set.error, "%sThis standard only supports one content per object.%c", fll_error_print_error, f_string_eol[0]);
               }
 
-              status = F_status_set_error(F_unsupported);
+              status = F_status_set_error(F_supported_not);
               break;
             }
 
index dd7f0bdd0565584f5b8c2db840a6a255651f689a..5cd2b2a9d0d243d70d5cada12287a72aa78bb0ec 100644 (file)
@@ -83,7 +83,7 @@ extern "C" {
       if (F_status_set_fine(status) == F_none_eol) {
         fss_extended_write_error_parameter_unsupported_eol_print(data);
 
-        return F_status_set_error(F_unsupported);
+        return F_status_set_error(F_supported_not);
       }
 
       if (F_status_is_error(status)) {
@@ -110,7 +110,7 @@ extern "C" {
           if (F_status_set_fine(status) == F_none_eol) {
             fss_extended_write_error_parameter_unsupported_eol_print(data);
 
-            return F_status_set_error(F_unsupported);
+            return F_status_set_error(F_supported_not);
           }
 
           if (F_status_is_error(status)) {
@@ -288,7 +288,7 @@ extern "C" {
             if (F_status_set_fine(status) == F_none_eol) {
               fss_extended_write_error_parameter_unsupported_eol_print(data);
 
-              status = F_status_set_error(F_unsupported);
+              status = F_status_set_error(F_supported_not);
               break;
             }
 
index 092bb5c37dd46f5afae0e6db4651cebefb0073ba..db95eee7179d7063486db024b3b0788e0a2e5b76 100644 (file)
@@ -27,7 +27,7 @@ extern "C" {
  *   F_number (with error bit) if parameter is not a number.
  *   F_number_negative (with error bit) on negative value.
  *   F_number_overflow (with error bit) on integer overflow.
- *   F_incomplete_utf (with error bit) if an incomplete UTF-8 fragment is found.
+ *   F_complete_not_utf (with error bit) if an incomplete UTF-8 fragment is found.
  *
  *   Errors (with error bit) from: fss_status_code_convert_number().
  *
@@ -70,7 +70,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not if string starts wth a null (length is 0).
- *   F_incomplete_utf (with error bit) if an incomplete UTF-8 fragment is found.
+ *   F_complete_not_utf (with error bit) if an incomplete UTF-8 fragment is found.
  *   F_number (with error bit) if parameter is not a number.
  *   F_number_negative (with error bit) on negative value.
  *   F_number_overflow (with error bit) on integer overflow.
@@ -100,7 +100,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not if string starts wth a null (length is 0).
- *   F_incomplete_utf (with error bit) if an incomplete UTF-8 fragment is found.
+ *   F_complete_not_utf (with error bit) if an incomplete UTF-8 fragment is found.
  *   F_number (with error bit) if parameter is not a number.
  *   F_number_negative (with error bit) on negative value.
  *   F_number_overflow (with error bit) on integer overflow.
index 5e06aea0dac6daff65a1f2af15fb57c32c19906b..5b7d3242e23a1ee52cf35cd4edd0f21e0e3e3600 100644 (file)
@@ -27,7 +27,7 @@ extern "C" {
  *   F_number (with error bit) if parameter is not a number.
  *   F_number_negative (with error bit) on negative value.
  *   F_number_overflow (with error bit) on integer overflow.
- *   F_incomplete_utf (with error bit) if an incomplete UTF-8 fragment is found.
+ *   F_complete_not_utf (with error bit) if an incomplete UTF-8 fragment is found.
  *
  *   Errors (with error bit) from: fss_status_code_convert_number().
  *
@@ -70,7 +70,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not if string starts wth a null (length is 0).
- *   F_incomplete_utf (with error bit) if an incomplete UTF-8 fragment is found.
+ *   F_complete_not_utf (with error bit) if an incomplete UTF-8 fragment is found.
  *   F_number (with error bit) if parameter is not a number.
  *   F_number_negative (with error bit) on negative value.
  *   F_number_overflow (with error bit) on integer overflow.
@@ -100,7 +100,7 @@ extern "C" {
  * @return
  *   F_none on success.
  *   F_data_not if string starts wth a null (length is 0).
- *   F_incomplete_utf (with error bit) if an incomplete UTF-8 fragment is found.
+ *   F_complete_not_utf (with error bit) if an incomplete UTF-8 fragment is found.
  *   F_number (with error bit) if parameter is not a number.
  *   F_number_negative (with error bit) on negative value.
  *   F_number_overflow (with error bit) on integer overflow.