-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
James Brundage
authored and
James Brundage
committed
Sep 22, 2024
1 parent
1011278
commit 48ad865
Showing
1 changed file
with
10 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
# Matches C/C++ #define | ||
# Matches C/C++ #define | ||
(?m)\#\s{0,} | ||
define # Match the define | ||
\s+ # Whitespace | ||
(?<Identifier>\w+) # The identifier | ||
\s{0,} # Optional Whitespace | ||
define # Match the define | ||
\s+ # Whitespace | ||
(?<Identifier>\w+) # The identifier | ||
\s{0,} # Optional Whitespace | ||
# Then either | ||
(?>(?<Definition>([^\\]+$ # A Line with no escape OR | ||
|(?<Line>[^\\]+?\\(?=(?>\r\n|\n))) # One or more lines ending with \ | ||
{1,}))) | ||
(?> | ||
(?<Definition>[^\\]+$ # A Line with no escape OR | ||
| | ||
(?<Line>[^\\]+?\\(?=(?>\r\n|\n))) # One or more lines ending with \ | ||
{1,})) |