* @brief Allocate memory for sequence file operations * * @param[in] size Size of memory to allocate in bytes * * @return void* Pointer to allocated memory, or NULL if allocation fails */
| 38 | * @return void* Pointer to allocated memory, or NULL if allocation fails |
| 39 | */ |
| 40 | static void *dfs_seq_alloc(unsigned long size) |
| 41 | { |
| 42 | return rt_calloc(1, size); |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * @brief Initialize and open a sequence file |
no test coverage detected