Move examples/*.sx and their expected/ snapshots into per-category subfolders (examples/<category>/...). Folder = leading filename token, with ffi-objc/ffi-jni kept whole; filenames are unchanged. The corpus runner and LSP sweep now discover each category's expected/ dir, while issues/ stays flat. Example 1058's repo-root-relative companion import is made file-relative. Path strings embedded in 164 snapshots were regenerated (path-only changes). Test-layout docs in CLAUDE.md updated.
17 lines
941 B
C
17 lines
941 B
C
#include "1209-ffi-01-primitives.h"
|
|
|
|
int ffi_id_int (int v) { return v; }
|
|
unsigned int ffi_id_uint (unsigned int v) { return v; }
|
|
short ffi_id_short (short v) { return v; }
|
|
unsigned short ffi_id_ushort(unsigned short v) { return v; }
|
|
long long ffi_id_i64 (long long v) { return v; }
|
|
unsigned long long ffi_id_u64 (unsigned long long v) { return v; }
|
|
signed char ffi_id_schar (signed char v) { return v; }
|
|
unsigned char ffi_id_uchar (unsigned char v) { return v; }
|
|
float ffi_id_f32 (float v) { return v; }
|
|
double ffi_id_f64 (double v) { return v; }
|
|
void * ffi_id_ptr (void * v) { return v; }
|
|
|
|
int ffi_add_int (int a, int b) { return a + b; }
|
|
double ffi_add_double(double a, double b) { return a + b; }
|