5 lines
70 B
C
5 lines
70 B
C
#include <stdint.h>
|
|
|
|
int32_t c_add_one(int32_t x) {
|
|
return 1 + x;
|
|
}
|