blob: c594f641d066cf529084365b5d798843480cd34f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
* internal.h
*
* Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
*/
#ifndef FSTREE_INTERNAL_H
#define FSTREE_INTERNAL_H
#include "config.h"
#include "fstree.h"
/*
If the environment variable SOURCE_DATE_EPOCH is set to a parsable number
that fits into an unsigned 32 bit value, return its value. Otherwise,
default to 0.
*/
sqfs_u32 get_source_date_epoch(void);
#endif /* FSTREE_INTERNAL_H */
|