Added function for iterating through offsets

This commit is contained in:
_ 2018-04-01 16:17:58 -07:00
parent 7179aba632
commit 37ce23db73

22
main.c
View File

@ -4,6 +4,21 @@
#include <stdio.h>
#include <string.h>
void unpackpld(const char *buffer, struct PldHeader *pldh) {
unsigned int i = 0;
char *wbuffer = NULL; // write buffer that will change.
unsigned int wsize = 0; // size of wbuffer.
for (i; (i + 1) < (pldh -> numOffset); i++) {
printf("start: %x - end: %x\n",
pldh -> offsets[i],
pldh -> offsets[i + 1]);
/* wsize = offsets[i + 1] - offsets[i];
wbuffer = (char*)malloc(sizeof(char) * wsize);
memcpy(wbuffer, buffer[offsets[i]], wsize); */
}
free(wbuffer);
}
void disp_pldheader(struct PldHeader *x) {
printf("number of offsets = %i\n", x -> numOffset);
unsigned int i;
@ -14,8 +29,10 @@ void disp_pldheader(struct PldHeader *x) {
bool read_pldheader(const char *buffer) {
int32_t *n = (int32_t*)buffer;
struct PldHeader *ph = (struct PldHeader*)malloc(sizeof(struct PldHeader));
unsigned int size_offsets = sizeof(uint32_t) * n[0];
struct PldHeader *ph = (struct PldHeader*)malloc(
sizeof(struct PldHeader)
);
uint32_t size_offsets = sizeof(uint32_t) * n[0];
ph -> offsets = (uint32_t*)malloc(size_offsets);
if (ph -> offsets == NULL) {
perror("Error 4: ");
@ -27,6 +44,7 @@ bool read_pldheader(const char *buffer) {
ph -> numOffset = n[0];
memcpy(ph -> offsets, buffer + sizeof(int32_t), size_offsets);
disp_pldheader(ph);
unpackpld(buffer, ph);
free(ph -> offsets);
free(ph);
return true;