File: bashreadline.h

package info (click to toggle)
bpfcc 0.35.0%2Bds-2~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 30,672 kB
  • sloc: ansic: 900,938; python: 41,379; cpp: 25,601; sh: 776; makefile: 281
file content (13 lines) | stat: -rw-r--r-- 256 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
/* Copyright (c) 2021 Facebook */
#ifndef __BASHREADLINE_H
#define __BASHREADLINE_H

#define MAX_LINE_SIZE 80

struct str_t {
	__u32 pid;
	char str[MAX_LINE_SIZE];
};

#endif /* __BASHREADLINE_H */