/
githubmirror
/
libtpms
Обзор
Документация
Войти
/
githubmirror
/
libtpms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
man/man3/TPMLIB_SetDebugFD.pod
38 строк
1 KB
Luca Boccassi
man: fix various typos found by Lintian
22 сен 2025, 20:29
22 сен 2025, 20:29
2c1deb5
Код
Авторство
О чём код?
=head1 NAME TPMLIB_SetDebugFD - Set the file descriptor to send the debug output to TPMLIB_SetDebugLevel - Set the debugging level TPMLIB_SetDebugPrefix - Set the prefix for each debugging line =head1 LIBRARY TPM library (libtpms, -ltpms) =head1 SYNOPSIS B<#include <libtpms/tpm_library.h>> B<uint32_t TPMLIB_SetDebugFD(int fd);> B<uint32_t TPMLIB_SetDebugLevel(unsigned int level);> B<uint32_t TPMLIB_SetDebugPrefix(const char *prefix);> =head1 DESCRIPTION B<TPMLIB_SetDebugFD()> allows the caller to set the file descriptor to send the debug output to. B<TPMLIB_SetDebugLevel()> allows the caller to set the debug level. Only debug levels greater than 1 will produce output. The indentation level of a line will determine whether it is printed. Lines with 0 indentation will be printed at debug level 1, 1 space of indentation at debug level 2 and so on. B<TPMLIB_SetDebugPrefix()> allows the caller to set a prefix that is to be printed in front of every line of debugging output. The prefix can be used for further indentation. =cut