5 lines
66 B
C++
5 lines
66 B
C++
extern "C"
|
|
void increment_by_one(int *input) {
|
|
*input += 1;
|
|
}
|
extern "C"
|
|
void increment_by_one(int *input) {
|
|
*input += 1;
|
|
}
|