#[unsafe(no_mangle)]pub unsafe extern "C" fn laminar_list_sources(
conn: *mut LaminarConnection,
out: *mut *mut c_char,
) -> i32Expand description
List all sources as JSON array.
Returns a JSON array like ["source1", "source2"].
§Arguments
conn- Database connectionout- Pointer to receive JSON string (caller frees withlaminar_string_free)
§Returns
LAMINAR_OK on success, or an error code.
§Safety
connmust be a valid connection handleoutmust be a valid pointer