summaryrefslogtreecommitdiffstats
path: root/sw/programmer/avr/fileinfo.h
blob: 6c831eda6b4740443429cd8871e14a05a7d11955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __FILEINFO_H__
#define __FILEINFO_H__

#include <stdio.h>

struct file_info
{
    size_t size;
    size_t blklen;
    uint16_t start_addr;
};

#endif