You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
228 B
C

#include <stdio.h>
#include <sys/stat.h>
#include <string.h>
#include <ctype.h>
#include "../include/change_key.h"
void set_key_value(char* firmware_buffer, int key, int value) {
memset(firmware_buffer + key, value, 1);
}