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