File: testruct.h

package info (click to toggle)
libyada 1.0.2-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 3,692 kB
  • ctags: 1,463
  • sloc: sh: 11,256; ansic: 8,100; makefile: 551; yacc: 315
file content (14 lines) | stat: -rw-r--r-- 150 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#ifndef __TESTRUCT__
#define __TESTRUCT__

typedef struct
{
  int id;
  char name[255];
  int var1;
  int *var2;
  char *str1;
} testruct_t;

#endif