Changeset 829a955 for libcfa/src/collections/string.hfa
- Timestamp:
- Sep 15, 2025, 5:11:15 PM (4 months ago)
- Branches:
- master
- Children:
- 8317671
- Parents:
- fae93a40
- File:
-
- 1 edited
-
libcfa/src/collections/string.hfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/collections/string.hfa
rfae93a40 r829a955 10 10 // Created On : Fri Sep 03 11:00:00 2021 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Sep 5 15:51:08 202513 // Update Count : 31 012 // Last Modified On : Sun Sep 14 10:58:28 2025 13 // Update Count : 311 14 14 // 15 15 … … 43 43 void ?{}( string & s, long double _Complex rhs ); 44 44 static inline void ?{}( string & s, int rhs ) { (s){(signed long int) rhs}; } 45 46 // string str( ssize_t rhs );47 // string str( size_t rhs );48 // string str( double rhs );49 // string str( long double rhs );50 // string str( double _Complex rhs );51 // string str( long double _Complex rhs );52 45 53 46 PBOOST string & ?=?( string & s, string c ); … … 68 61 static inline string & strcpy( string & s, const string & c ) { s = c; return s; } 69 62 static inline string & strncpy( string & s, const string & c, size_t n ) { assign( s, c, n ); return s; } 63 char * strncpy( char * dst, string & src, size_t n ); 64 char * ?=?( char *& dst, string & src ); 65 void ?{}( char *& dst, string & src ); 70 66 71 67 // Alternate construction: request shared edits
Note:
See TracChangeset
for help on using the changeset viewer.