-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrtl-find-file.h
45 lines (39 loc) · 1.1 KB
/
rtl-find-file.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
* COPYRIGHT (c) 2012-2013 Chris Johns <[email protected]>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
*/
/**
* @file
*
* @ingroup rtems_rtl
*
* @brief RTEMS Run-Time Linker Object Support.
*/
#if !defined (_RTEMS_RTL_FIND_FILE_H_)
#define _RTEMS_RTL_FIND_FILE_H_
#include <rtems.h>
#include <rtems/chain.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/**
* Find a file on disk given a name and a path.
*
* @param name The file name to find. Can be relative or absolute.
* @param paths The paths to search.
* @param file_name Place the full path in this location if found.
* @param size The size of the file if found as returned by the 'stat' call.
* @retval true The file was found.
* @retval false The file was not found.
*/
bool rtems_rtl_find_file (const char* name,
const char* paths,
const char** file_name,
size_t* size);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif