O nás     Inzerce     KontaktSpolehlivé informace o IT již od roku 2011
Hledat
Nepřehlédněte: Usnadní vám práci: Pozoruhodné IT produkty pro rok 2024
Správa dokumentů
Digitální transformace
Informační systémy
Hlavní rubriky: Informační systémy, Mobilní technologie, Datová centra, Sítě, IT bezpečnost, Software, Hardware, Zkušenosti a názory, Speciály

Pozoruhodné IT produkty 2024
E-knihy o IT zdarma
Manuál Linux
[Linux manuál]

confstr: získat proměnné řetězce závislé na konfiguraci

Originální popis anglicky: confstr - get configuration dependent string variables

Návod, kniha: Linux Programmer's Manual

STRUČNĚ

#define _POSIX_C_SOURCE 2
or
#define _XOPEN_SOURCE
#include <unistd.h>
 
size_t confstr(int name, char *buf, size_t len);

POPIS / INSTRUKCE

confstr() gets the value of configuration-dependent string variables.
The name argument is the system variable to be queried. The following variables are supported:
_CS_PATH
A value for the PATH variable which indicates where all the POSIX.2 standard utilities can be found.
If buf is not NULL, and len is not zero, confstr() copies the value of the string to buf truncated to len - 1 characters if necessary, with a null character as termination. This can be detected by comparing the return value of confstr() against len.
If len is zero and buf is NULL, confstr() just returns the value as defined below.

NÁVRATOVÁ HODNOTA

If name does not correspond to a valid configuration variable, confstr() returns 0.

PŘÍKLADY POUŽITÍ

The following code fragment determines the path where to find the POSIX.2 system utilities:
 

char *pathbuf; size_t n;
n = confstr(_CS_PATH,NULL,(size_t)0); if ((pathbuf = malloc(n)) == NULL) abort(); confstr(_CS_PATH, pathbuf, n);

CHYBY / ERRORY

If the value of name is invalid, errno is set to EINVAL.

ODPOVÍDAJÍCÍ

proposed POSIX.2

BUGS

POSIX.2 is not yet an approved standard; the information in this manpage is subject to change.

SOUVISEJÍCÍ

sh(1), exec(3), system(3)
1993-04-17 GNU
©2011-2024 BusinessIT.cz, ISSN 1805-0522 | Názvy použité v textech mohou být ochrannými známkami příslušných vlastníků.
Provozovatel: Bispiral, s.r.o., kontakt: BusinessIT(at)Bispiral.com | Inzerce: Best Online Media, s.r.o., zuzana@online-media.cz
O vydavateli | Pravidla webu BusinessIT.cz a ochrana soukromí | Používáme účetní program Money S3 | pg(8704)