Is it ok to use static function for Function pointer in struct?

后端 未结 0 1778
生来不讨喜
生来不讨喜 2021-01-14 12:00
// example.c

static int a(int a) {
    return a + 1;
}

struct Example example = {
    a
};

// example.h

struct Example {
           


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题