File: proctitle.h

package info (click to toggle)
gvm-libs 22.35.4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,980 kB
  • sloc: ansic: 39,095; makefile: 26
file content (20 lines) | stat: -rw-r--r-- 340 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-FileCopyrightText: 2014-2023 Greenbone AG
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

/**
 * @file
 * @brief API for process title setting.
 */

#ifndef _GVM_BASE_PROCTITLE_H
#define _GVM_BASE_PROCTITLE_H

void
proctitle_init (int, char **);

void
proctitle_set (const char *, ...);

#endif /* not _GVM_BASE_PROCTITLE_H */