mirror of
git://sourceware.org/git/libabigail.git
synced 2025-01-27 03:33:17 +00:00
11 lines
126 B
C
11 lines
126 B
C
|
int add (float, float);
|
||
|
|
||
|
struct Student
|
||
|
{
|
||
|
int usn;
|
||
|
char *name;
|
||
|
float percentage;
|
||
|
};
|
||
|
|
||
|
void print (const struct Student);
|