aboutsummaryrefslogtreecommitdiff
path: root/src/resolve_deps.c
diff options
context:
space:
mode:
authordacctal <dacctal@symlinx.net>2026-05-25 04:13:07 +0000
committerdacctal <dacctal@symlinx.net>2026-05-25 04:13:07 +0000
commit013b7f659985b540e549599ed2e17adb9c81d858 (patch)
treedf56ee9e41c8610660e34e1d21014ac8a0fbc871 /src/resolve_deps.c
parentb916aeed79d56158a38f88d37ad51ef90f9a154d (diff)
frosty telling me one thing that fixes the entire codebase maybe this should just be his project
Diffstat (limited to 'src/resolve_deps.c')
-rw-r--r--src/resolve_deps.c42
1 files changed, 21 insertions, 21 deletions
diff --git a/src/resolve_deps.c b/src/resolve_deps.c
index e4d50f6..89668ce 100644
--- a/src/resolve_deps.c
+++ b/src/resolve_deps.c
@@ -4,25 +4,25 @@
#include "resolve_deps.h"
void resolve_deps(void) {
- const char *frame_top = " (C_C)";
- const char *frame1_bot = "_/ \\-";
- const char *frame2_bot = "-/ \\_";
-
- printf("\033[2J\033[H");
- printf("Unfortunately due to budget issues, we could not afford a progress bar. Enjoy this instead:\n\n");
-
- for (int i = 0; i < 16; i++) {
- printf("%s\n%s\n", frame_top, i % 2 == 0 ? frame1_bot : frame2_bot);
- for (int j = 0; j <= i; j++) {
- printf("67! ");
- }
- printf("\n");
- fflush(stdout);
- usleep(300000);
- if (i < 15) {
- printf("\033[3A");
- }
- }
- printf("\n");
- printf("Dependencies resolved! 1 pregnancy found.\n");
+// const char *frame_top = " (C_C)";
+// const char *frame1_bot = "_/ \\-";
+// const char *frame2_bot = "-/ \\_";
+//
+// printf("\033[2J\033[H");
+// printf("Unfortunately due to budget issues, we could not afford a progress bar. Enjoy this instead:\n\n");
+//
+// for (int i = 0; i < 16; i++) {
+// printf("%s\n%s\n", frame_top, i % 2 == 0 ? frame1_bot : frame2_bot);
+// for (int j = 0; j <= i; j++) {
+// printf("67! ");
+// }
+// printf("\n");
+// fflush(stdout);
+// usleep(300000);
+// if (i < 15) {
+// printf("\033[3A");
+// }
+// }
+// printf("\n");
+// printf("Dependencies resolved! 1 pregnancy found.\n");
}