| 3364 | |
| 3365 | |
| 3366 | static void copy_key(const temporary_key* in, temporary_key* out) |
| 3367 | { |
| 3368 | /************************************** |
| 3369 | * |
| 3370 | * c o p y _ k e y |
| 3371 | * |
| 3372 | ************************************** |
| 3373 | * |
| 3374 | * Functional description |
| 3375 | * Copy a key. |
| 3376 | * |
| 3377 | **************************************/ |
| 3378 | |
| 3379 | out->key_length = in->key_length; |
| 3380 | out->key_flags = in->key_flags; |
| 3381 | memcpy(out->key_data, in->key_data, in->key_length); |
| 3382 | } |
| 3383 | |
| 3384 | |
| 3385 | static contents delete_node(thread_db* tdbb, WIN* window, UCHAR* pointer) |
no outgoing calls
no test coverage detected