#include <string.h>
#include "config.h"
#include "log2lines.h"
#include "match.h"
Go to the source code of this file.
◆ match_break()
Definition at line 15 of file match.c.
16{
18
21 {
22 case 1:
24 break;
25 default:
27 }
28 return 1;
29}
static int processed(const type_t *type)
Referenced by match_line().
◆ match_line()
Definition at line 72 of file match.c.
73{
75
76 if ( *
Line ==
'\n' || *
Line ==
'\0' )
77 return 1;
79 return 1;
80
83
84
85
86
87
88 return (
int)(
Line[0]);
89}
int strncmp(const char *String1, const char *String2, ACPI_SIZE Count)
static int match_break(FILE *outFile, char *Line, int processed)
static int match_mod(FILE *outFile, char *Line, int processed)
Referenced by translate_files().
◆ match_mod()
Definition at line 31 of file match.c.
32{
38
39 int cnt;
40
43 {
44 l2l_dbg(1,
"Module relocate list:\n");
46 return 0;
47 }
49 {
50 case 1:
52 {
54 {
58 }
59 return 0;
60 }
61 else
62 {
64 }
65 break;
66 default:
68 }
69 return 1;
70}
_Check_return_ _CRTIMP int __cdecl sscanf(_In_z_ const char *_Src, _In_z_ _Scanf_format_string_ const char *_Format,...)
_Must_inspect_result_ _In_ WDFDEVICE _In_ PWDF_DEVICE_PROPERTY_DATA _In_ DEVPROPTYPE _In_ ULONG Size
Referenced by match_line().