Remove unneccessary empty lines at the end of library files

This commit is contained in:
Not-Nik 2023-07-10 00:45:21 +02:00
parent 7a9cdd3af0
commit 642ca0513f
No known key found for this signature in database
GPG Key ID: 08BB71E672DB3BFD
3 changed files with 0 additions and 7 deletions

View File

@ -65,7 +65,6 @@ def fix_enums(arg_name, arg_type, func_name):
def parse_header(header_name: str, output_file: str, prefix: str, *args: str): def parse_header(header_name: str, output_file: str, prefix: str, *args: str):
header = open(header_name, mode="r") header = open(header_name, mode="r")
zig_functions = []
zig_heads = [] zig_heads = []
zig_types = set() zig_types = set()
@ -142,8 +141,6 @@ def parse_header(header_name: str, output_file: str, prefix: str, *args: str):
print(prelude, file=zig_header) print(prelude, file=zig_header)
print("\n".join(zig_heads), file=zig_header) print("\n".join(zig_heads), file=zig_header)
print("", file=zig_header)
print("\n".join(zig_functions), file=zig_header)
if __name__ == "__main__": if __name__ == "__main__":

View File

@ -127,5 +127,3 @@ pub extern fn QuaternionFromEuler(pitch: f32, yaw: f32, roll: f32) Quaternion;
pub extern fn QuaternionToEuler(q: Quaternion) Vector3; pub extern fn QuaternionToEuler(q: Quaternion) Vector3;
pub extern fn QuaternionTransform(q: Quaternion, mat: Matrix) Quaternion; pub extern fn QuaternionTransform(q: Quaternion, mat: Matrix) Quaternion;
pub extern fn QuaternionEquals(p: Quaternion, q: Quaternion) c_int; pub extern fn QuaternionEquals(p: Quaternion, q: Quaternion) c_int;

View File

@ -1333,5 +1333,3 @@ pub extern fn SetAudioStreamBufferSizeDefault(size: c_int) void;
pub extern fn SetAudioStreamCallback(stream: AudioStream, callback: AudioCallback) void; pub extern fn SetAudioStreamCallback(stream: AudioStream, callback: AudioCallback) void;
pub extern fn AttachAudioStreamProcessor(stream: AudioStream, processor: AudioCallback) void; pub extern fn AttachAudioStreamProcessor(stream: AudioStream, processor: AudioCallback) void;
pub extern fn DetachAudioStreamProcessor(stream: AudioStream, processor: AudioCallback) void; pub extern fn DetachAudioStreamProcessor(stream: AudioStream, processor: AudioCallback) void;