Index: libcfa/src/stdlib.cfa
===================================================================
--- libcfa/src/stdlib.cfa	(revision 2df85ceb394f69ff9f38dfa6bc3db3d9ea433a6f)
+++ libcfa/src/stdlib.cfa	(revision 1911f37cfdb2a7d266e1e37d20978e10e59f0f16)
@@ -10,6 +10,6 @@
 // Created On       : Thu Jan 28 17:10:29 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Wed Sep 24 18:01:01 2025
-// Update Count     : 759
+// Last Modified On : Wed Sep 24 18:14:20 2025
+// Update Count     : 760
 //
 
@@ -46,5 +46,5 @@
 forall( T & | sized(T) | { void ^?{}( T & ); } )
 void adelete( T arr[] ) {
-	if ( arr == 0p ) return;							// 0p ? special case
+  if ( arr == 0p ) return;								// 0p ? special case
 	size_t dim = sizeof( T ) == 0 ? (size_t)(*(size_t *)arr) : malloc_size( arr ) / sizeof( T ); // compute dimension
 	for ( i; 0 -~= dim - 1 ) {							// reverse allocation order, must be signed
@@ -65,5 +65,5 @@
 
 bool checkif( const char s[], int (* kind)( int ) ) {
-	for () {
+	for () {											// at least 1 character '\0'
 	  if ( *s == '\0' ) return true;
 	  if ( ! kind( *s ) ) return false;
@@ -73,5 +73,5 @@
 
 bool checkif( const char s[], int (* kind)( int, locale_t ), locale_t locale ) {
-	for () {
+	for () {											// at least 1 character '\0'
 	  if ( *s == '\0' ) return true;
 	  if ( ! kind( *s, locale ) ) return false;
