↩ revert:

This commit is contained in:
lzy
2024-05-27 02:33:10 +08:00
parent 2336f88407
commit a277dec1fe
136 changed files with 606 additions and 606 deletions

View File

@@ -13,16 +13,16 @@ struct score_st
int chinese;
};
static int print_s(void* record)
static int print_s(void *record)
{
struct score_st* r = record;
struct score_st *r = record;
printf("%d %s %d %d\n", r->id, r->name, r->math, r->chinese);
}
int main( )
{
STACK* st;
STACK *st;
struct score_st tmp;
int i, ret;