/* 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