Skip to content

Commit

Permalink
#TEST: comparing C and C++ attributes for embedded
Browse files Browse the repository at this point in the history
  • Loading branch information
akielaries committed Apr 13, 2024
1 parent 654fb78 commit f9b5ee1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions experiment/c.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include <stdio.h>

int add(int n1, int n2) {
return n1 + n2;
}

int add(int n1, int n2) {
return n1 + n2;
}

Empty file added experiment/cpp.cpp
Empty file.

0 comments on commit f9b5ee1

Please sign in to comment.