blob: f4303f8c9cf6bde18e5c863d2fa58517455ae32e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* Copyright (c) 2001 Matej Pfajfar.
* Copyright (c) 2001-2004, Roger Dingledine.
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
* Copyright (c) 2007-2020, The Tor Project, Inc. */
/* See LICENSE for licensing information */
/**
* @file libc.h
* @brief Header for lib/osinfo/libc.c
**/
#ifndef TOR_LIB_OSINFO_LIBC_H
#define TOR_LIB_OSINFO_LIBC_H
const char *tor_libc_get_name(void);
const char *tor_libc_get_version_str(void);
const char *tor_libc_get_header_version_str(void);
#endif /* !defined(TOR_LIB_OSINFO_LIBC_H) */
|