summaryrefslogtreecommitdiff
path: root/tests/examplefiles/abnf_example1.abnf
diff options
context:
space:
mode:
Diffstat (limited to 'tests/examplefiles/abnf_example1.abnf')
-rw-r--r--tests/examplefiles/abnf_example1.abnf22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/examplefiles/abnf_example1.abnf b/tests/examplefiles/abnf_example1.abnf
deleted file mode 100644
index 5cd9cd25..00000000
--- a/tests/examplefiles/abnf_example1.abnf
+++ /dev/null
@@ -1,22 +0,0 @@
-; This examples from WikiPedia <https://en.wikipedia.org/wiki/Augmented_Backus%E2%80%93Naur_Form>.
-
- postal-address = name-part street zip-part
-
- name-part = *(personal-part SP) last-name [SP suffix] CRLF
- name-part =/ personal-part CRLF
-
- personal-part = first-name / (initial ".")
- first-name = *ALPHA
- initial = ALPHA
- last-name = *ALPHA
- suffix = ("Jr." / "Sr." / 1*("I" / "V" / "X"))
-
- street = [apt SP] house-num SP street-name CRLF
- apt = 1*4DIGIT
- house-num = 1*8(DIGIT / ALPHA)
- street-name = 1*VCHAR
-
- zip-part = town-name "," SP state 1*2SP zip-code CRLF
- town-name = 1*(ALPHA / SP)
- state = 2ALPHA
- zip-code = 5DIGIT ["-" 4DIGIT]