about summary refs log tree commit diff
path: root/csrc/dsa.h
diff options
context:
space:
mode:
authormakefunstuff <[email protected]>2024-07-18 00:36:03 +0200
committermakefunstuff <[email protected]>2024-07-18 00:36:03 +0200
commit14cebbfb0700a876e24475ec13916573b52d7186 (patch)
treeea75fcd69abff1d5d9eb218d5e020b2aacfb6963 /csrc/dsa.h
parent1072f6346489d41f38e565a408be0d12c1c898b2 (diff)
downloadtinkerbunk-14cebbfb0700a876e24475ec13916573b52d7186.tar.gz
dsas practice
Diffstat (limited to '')
-rw-r--r--csrc/dsa.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/csrc/dsa.h b/csrc/dsa.h
new file mode 100644
index 0000000..2878344
--- /dev/null
+++ b/csrc/dsa.h
@@ -0,0 +1,5 @@
+#ifndef __DSA_H__
+#define __DSA_H__
+void bubble_sort(int a[], int n);
+void selection_sort(int a[], int n);
+#endif // !__DSA_H__