File: data.h

package info (click to toggle)
nsxiv 33-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 496 kB
  • sloc: ansic: 4,818; makefile: 93; sh: 88
file content (14 lines) | stat: -rw-r--r-- 254 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef ICON_DATA_H
#define ICON_DATA_H

typedef struct {
  unsigned int size;
  unsigned int cnt;
  const unsigned char *data;
} icon_data_t;

#define ICON_(s) { s, ARRLEN(icon_data_##s), icon_data_##s }

#include "data.gen.h"

#endif /* ICON_DATA_H */