| 286 | */ |
| 287 | |
| 288 | OBJECT * object_copy( OBJECT * obj ) |
| 289 | { |
| 290 | object_validate( obj ); |
| 291 | #ifdef BJAM_NO_MEM_CACHE |
| 292 | return object_new( object_str( obj ) ); |
| 293 | #else |
| 294 | ++strcount_in; |
| 295 | return obj; |
| 296 | #endif |
| 297 | } |
| 298 | |
| 299 | |
| 300 | /* |
no test coverage detected