feat: Add C language test fixture for repository mapping

This commit is contained in:
Paul Gauthier (aider) 2025-03-12 14:39:59 -07:00
parent 393b45dd21
commit 0b949f47d9

View file

@ -4,3 +4,18 @@ int main() {
printf("Hello, World!\n");
return 0;
}
#include <stdio.h>
/**
* The main entry point of the program
* @return 0 on success
*/
int main(int argc, char **argv) {
printf("Hello, World!\n");
return 0;
}
// Helper function
void print_message(const char *message) {
printf("%s\n", message);
}