summaryrefslogtreecommitdiff
path: root/snippets
diff options
context:
space:
mode:
authortalha <talha@talhaamir.xyz>2025-12-06 15:08:59 +0500
committertalha <talha@talhaamir.xyz>2025-12-06 15:08:59 +0500
commit75b48fc3247b412bb1580c47e96022cffdc8ba9a (patch)
tree20f615aae971834ebc1490b41cecdc3d0e9c4a7d /snippets
parent26161cefcda38711c7c8e166ccca7478bcaf18f4 (diff)
Updated config structureHEADmain
Diffstat (limited to 'snippets')
-rw-r--r--snippets/for.c2
-rw-r--r--snippets/ifelif.c4
-rw-r--r--snippets/ifelse.c4
-rw-r--r--snippets/switch.c6
4 files changed, 0 insertions, 16 deletions
diff --git a/snippets/for.c b/snippets/for.c
deleted file mode 100644
index 4cc9378..0000000
--- a/snippets/for.c
+++ /dev/null
@@ -1,2 +0,0 @@
-for( ; ; ) {
-}
diff --git a/snippets/ifelif.c b/snippets/ifelif.c
deleted file mode 100644
index 6f37315..0000000
--- a/snippets/ifelif.c
+++ /dev/null
@@ -1,4 +0,0 @@
-if (_) {
-} else if (_) {
-} else {
-}
diff --git a/snippets/ifelse.c b/snippets/ifelse.c
deleted file mode 100644
index 03f9dda..0000000
--- a/snippets/ifelse.c
+++ /dev/null
@@ -1,4 +0,0 @@
-if (_) {
-}
-else {
-}
diff --git a/snippets/switch.c b/snippets/switch.c
deleted file mode 100644
index b0b527a..0000000
--- a/snippets/switch.c
+++ /dev/null
@@ -1,6 +0,0 @@
-switch (_) {
- case (_): {
- } break;
- default: {
- } break;
-}