Copy the array of characters from the given name into the internal name buffer and initialize entry_name to point to it. */
| 3456 | name buffer and initialize entry_name to point to it. |
| 3457 | */ |
| 3458 | void copy_name(const Simple_cstring &name) |
| 3459 | { |
| 3460 | name.strcpy(name_ptr()); |
| 3461 | entry_name= Name_string(name_ptr(), name.length()); |
| 3462 | } |
| 3463 | |
| 3464 | /** |
| 3465 | Initialize all members |
nothing calls this directly
no test coverage detected