Deleting a file that isn't supposed to be here

This commit is contained in:
Alexis Jhon Gaspar 2023-09-11 19:32:38 +08:00
parent cd4bb31a71
commit 5acc4651db

12
test.sh
View file

@ -1,12 +0,0 @@
#!/bin/sh
GList *some_list, *l;
some_list = g_app_info_get_all(); /*This is where the GList function goes
for (l = some_list; l != NULL; l = l->next)
{
gpointer element_data = l->data;
printf("%s\n", g_app_info_get_display_name(element_data)); /*print out all of the display names of the .desktop files */
}
return 0;