summaryrefslogtreecommitdiff
path: root/support/dktools/dk-ls.h
blob: fe98deccf5c13ed36e0e4dbfe7f99bdb9e2ec073 (plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
Copyright (C) 2015-2020, Dirk Krause
SPDX-License-Identifier: BSD-3-Clause
*/

/*
	WARNING: This file was generated by the dkct program (see
	http://dktools.sourceforge.net/ for details).
	Changes you make here will be lost if dkct is run again!
	You should modify the original source and run dkct on it.
	Original source: dk-ls.ctr
*/

#ifndef DK_LS_H_INCLUDED
/** Avoid multiple inclusions. */
#define DK_LS_H_INCLUDED 1


#line 10 "dk-ls.ctr"

/**	@file	dk-ls.h	Header file for dk-ls program.
*/

#ifndef	DK4CONF_H_INCLUDED
#include "dk4conf.h"
#endif

#ifndef	DK4MD_H_INCLUDED
#include "dk4md.h"
#endif

#ifndef	DK4FILEIT_H_INCLUDED
#include "dk4fileit.h"
#endif



#ifdef __cplusplus
extern "C" {
#endif

/**	Set message digest type and message digest encoding.
	@param	mdtype	Address of message digest type variable.
	@param	mdenc	Address of message digest encoding variable.
	@param	buffer	Buffer containing textual description.
	@param	app	Application structure for diagnostics, may be NULL.
	@param	msg	Message string array.
	@param	szmsg	Size of message string array.
*/
void dk_ls_set_md(
  int			*mdtype,
  int			*mdenc,
  dkChar		*buffer,
  dk4_app_t		*app,
  const dkChar * const	*msg,
  size_t		 szmsg
);

/**	Read information about symbolic link target.
	@param	bptr	Buffer for path name.
	@param	szb	Size of buffer (number of dkChar).
	@param	fn	Link filename.
	@return	1 on success, 0 on error.
*/
int
dk_ls_readlink(dkChar *bptr, size_t szb, const dkChar *fn);

/**	Report error while attempting to read size.
	@param	app	Application structure for diagnostics.
	@param	fn	File name.
	@param	ch	Data chooser.
	@param	msg	Constant message texts.
	@param	szmsg	Size of msg array.
*/
void
dk_ls_report_fileinfo_size_error(
  dk4_app_t		*app,
  const dkChar		*fn,
  int			 ch,
  const dkChar * const	*msg,
  size_t		 szmsg
);

/**	Report error while attempting to read timestamp.
	@param	app	Application structure for diagnostics.
	@param	fn	File name.
	@param	ch	Data chooser.
	@param	msg	Constant message texts.
	@param	szmsg	Size of msg array.
*/
void
dk_ls_report_fileinfo_timestamp_error(
  dk4_app_t		*app,
  const dkChar		*fn,
  int			 ch,
  const dkChar * const	*msg,
  size_t		 szmsg
);

#ifdef __cplusplus
}
#endif




#endif