* garrow_file_get_mode: * @file: A #GArrowFile. * * Returns: The mode of the file. */
| 98 | * Returns: The mode of the file. |
| 99 | */ |
| 100 | GArrowFileMode |
| 101 | garrow_file_get_mode(GArrowFile *file) |
| 102 | { |
| 103 | auto arrow_file = garrow_file_get_raw(file); |
| 104 | |
| 105 | auto arrow_mode = arrow_file->mode(); |
| 106 | return garrow_file_mode_from_raw(arrow_mode); |
| 107 | } |
| 108 | |
| 109 | G_END_DECLS |
| 110 |
nothing calls this directly
no test coverage detected