1
0
mirror of https://github.com/weiju/amiga-stuff synced 2025-12-08 14:58:33 +00:00
Files
amiga-stuff/requesters/dos13.h
Wei-ju Wu 3e89af887a added sorting for the file list
added chibi test framework in requesters for unit testing the
more complicated sorting functionality, added sorting for file
lists
2016-02-23 20:24:59 -08:00

18 lines
453 B
C

// dos13 - a module for DOS 1.x interaction
#pragma once
#ifndef __DOS13_H__
#define __DOS13_H__
#include "file_list.h"
/*
* Scans the specified directory and returns the entries, if dirpath is NULL,
* returns the list of all logical volumes.
*/
extern struct FileListEntry *scan_dir(const char *dirpath, int *num_entries);
/* free the resources allocated in the specified entry list */
void free_file_list(struct FileListEntry *entries);
#endif