Changes in libcfa/src/stdlib.hfa [3770b87:8f650f0]
- File:
-
- 1 edited
-
libcfa/src/stdlib.hfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/stdlib.hfa
r3770b87 r8f650f0 10 10 // Created On : Thu Jan 28 17:12:35 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Oct 8 09:18:28 202313 // Update Count : 7 8912 // Last Modified On : Sun Mar 17 08:25:31 2024 13 // Update Count : 796 14 14 // 15 15 … … 291 291 forall( T & | sized(T) | { void ^?{}( T & ); } ) void adelete( T arr[] ); 292 292 forall( T & | sized(T) | { void ^?{}( T & ); }, TT... | { void adelete( TT ); } ) void adelete( T arr[], TT rest ); 293 //--------------------------------------- 294 295 // Check if all string characters are a specific kind, e.g., checkif( s, isblank ) 296 bool checkif( const char s[], int (* kind)( int ) ); 297 bool checkif( const char s[], int (* kind)( int, locale_t ), locale_t locale ); 293 298 294 299 //--------------------------------------- … … 315 320 316 321 forall( T | { T strto( const char sptr[], char * eptr[], int ); } ) 317 T convert( const char sptr[] ); 322 T convert( const char sptr[] ); // integrals 323 forall( T | { T strto( const char sptr[], char * eptr[] ); } ) 324 T convert( const char sptr[] ); // floating-point (no base) 318 325 319 326 static inline {
Note:
See TracChangeset
for help on using the changeset viewer.