infix.h (431B)
1 /* 2 * 3 * 4 * This license is set out in https://raw.githubusercontent.com/Broadcom-Network-Switching-Software/OpenBCM/master/Legal/LICENSE file. 5 * 6 * Copyright 2007-2020 Broadcom Inc. All rights reserved. 7 */ 8 #ifndef _DIAG_INFIX_H 9 #define _DIAG_INFIX_H 10 11 #include <sal/types.h> 12 13 #define INFIX_ASTK_SIZE 16 14 #define INFIX_OSTK_SIZE 6 15 #define INFIX_TYPE uint32 16 17 int infix_eval(char *s, INFIX_TYPE *v); 18 19 #endif /* _DIAG_INFIX_H */