File: system_id.h

package info (click to toggle)
diskscan 0.21-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,656 kB
  • sloc: ansic: 11,136; python: 338; xml: 138; sh: 41; makefile: 34
file content (16 lines) | stat: -rw-r--r-- 280 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef SYSTEM_ID_H
#define SYSTEM_ID_H

#include <stdbool.h>

typedef struct system_identifier_t {
	char os[64];
	char system[64];
	char chassis[64];
	char baseboard[64];
	char mac[64];
} system_identifier_t;

bool system_identifier_read(system_identifier_t *system_id);

#endif