1 /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */ 2 /* Copyright (c) 2021 Facebook */ 3 #ifndef __BASHREADLINE_H 4 #define __BASHREADLINE_H 5 6 #define MAX_LINE_SIZE 80 7 8 struct str_t { 9 __u32 pid; 10 char str[MAX_LINE_SIZE]; 11 }; 12 13 #endif /* __BASHREADLINE_H */ 14