object name to snake case
All checks were successful
Rust / build-gnu-apt (pull_request) Successful in 2m0s
Rust / build-size-gnu-unstable (pull_request) Successful in 41s

This commit is contained in:
Vinzenz Schroeter 2025-06-28 18:38:20 +02:00
parent c702d832f4
commit 41fbdbf3a3
10 changed files with 712 additions and 694 deletions

View file

@ -4,9 +4,9 @@
/// DO NOT DO ANY OF THIS!
int main(void) {
BitmapCommand *bmcmd = sp_bitmapcommand_new(sp_bitmap_new_max_sized(), 0, 0, COMPRESSION_CODE_UNCOMPRESSED);
BitmapCommand *bmcmd = sp_bitmap_command_new(sp_bitmap_new_max_sized(), 0, 0, COMPRESSION_CODE_UNCOMPRESSED);
BitVecCommand *bvcmd = (BitVecCommand *) bmcmd;
sp_bitveccommand_free(bvcmd);
sp_bit_vec_command_free(bvcmd);
uint8_t *data = calloc(1024, 1);
struct GenericCommand generic = {
@ -16,7 +16,7 @@ int main(void) {
sock_init();
sp_udpsocket_send_command(sock, &generic);
sp_udp_socket_send_command(sock, &generic);
return 0;
}