25 lines
328 B
C
25 lines
328 B
C
#include <float.h>
|
|
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
struct nub_core_string
|
|
{
|
|
const char *data;
|
|
int length;
|
|
};
|
|
|
|
|
|
|
|
int32_t nub_math_add_500748c2c6d70959(int32_t, int32_t);
|
|
|
|
|
|
int32_t nub_math_add_500748c2c6d70959(int32_t a, int32_t b)
|
|
{
|
|
{
|
|
return (a + b);
|
|
}
|
|
}
|
|
|