Function pointer with named arguments?What are the differences between a pointer variable and a reference variable in C++?What is a smart pointer and when should I use one?What's the difference between a method and a function?var functionName = function() vs function functionName() How do function pointers in C work?Set a default parameter value for a JavaScript functionHow does free know how much to free?What does the exclamation mark do before the function?JavaScript plus sign in front of function nameWhy should I use a pointer rather than the object itself?

Some Russian letters overlap the next line of text when used in drop caps

Which US defense organization would respond to an invasion like this?

My large rocket is still flipping over

All superlinear runtime algorithms are asymptotically equivalent to convex function?

How to calculate rate of axial precession?

Counting the Number of Real Roots of A Polynomial

The origin of list data structure

Determine if a grid contains another grid

Game artist computer workstation set-up – is this overkill?

Page count conversion from single to double-space for submissions

What is a common way to tell if an academic is "above average," or outstanding in their field? Is their h-index (Hirsh index) one of them?

Is disk brake effectiveness mitigated by tyres losing traction under strong braking?

How did the Apollo guidance computer handle parity bit errors?

Why is my arithmetic with a long long int behaving this way?

Would a "Permanence" spell in 5e be overpowered?

about academic proof-reading, what to do in this situation?

How to deal with employer who keeps me at work after working hours

Does running exec do anything?

Where did Lovecraft write about Carcosa?

no sense/need/point

Hostile Divisor Numbers

Why did the Apollo 13 crew extend the LM landing gear?

Constitutional limitation of criminalizing behavior in US law?

Is space itself expanding or is it just momentum from the big bang carrying things apart?



Function pointer with named arguments?


What are the differences between a pointer variable and a reference variable in C++?What is a smart pointer and when should I use one?What's the difference between a method and a function?var functionName = function() vs function functionName() How do function pointers in C work?Set a default parameter value for a JavaScript functionHow does free know how much to free?What does the exclamation mark do before the function?JavaScript plus sign in front of function nameWhy should I use a pointer rather than the object itself?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








16















I recently came across a strange syntax in C program.



struct connector_agent_api
bool (*receive)(slot *s, uint8_t *data, uint8_t length);



Is "receive" a function pointer?



If it is a function pointer, why does it have named arguments? Should it be like the following one?



bool (*receive)(slot *, uint8_t *, uint8_t);


It certainly compiled and being used in a library. I searched on internet a lot and tried to justify this kind of syntax. I still don't know why this thing can be compiled... :(










share|improve this question



















  • 20





    These names are for self-documentation only, they have no meaning for the functionality.

    – Eugene Sh.
    Apr 26 at 16:20






  • 7





    Note this is very much like a function declaration in a header file, where parameter names are optional and have no effect on the resulting program.

    – jdehesa
    Apr 26 at 16:21






  • 2





    @EugeneSh. Same as for any other function declaration that's not a definition.

    – Konrad Rudolph
    Apr 26 at 21:04

















16















I recently came across a strange syntax in C program.



struct connector_agent_api
bool (*receive)(slot *s, uint8_t *data, uint8_t length);



Is "receive" a function pointer?



If it is a function pointer, why does it have named arguments? Should it be like the following one?



bool (*receive)(slot *, uint8_t *, uint8_t);


It certainly compiled and being used in a library. I searched on internet a lot and tried to justify this kind of syntax. I still don't know why this thing can be compiled... :(










share|improve this question



















  • 20





    These names are for self-documentation only, they have no meaning for the functionality.

    – Eugene Sh.
    Apr 26 at 16:20






  • 7





    Note this is very much like a function declaration in a header file, where parameter names are optional and have no effect on the resulting program.

    – jdehesa
    Apr 26 at 16:21






  • 2





    @EugeneSh. Same as for any other function declaration that's not a definition.

    – Konrad Rudolph
    Apr 26 at 21:04













16












16








16


1






I recently came across a strange syntax in C program.



struct connector_agent_api
bool (*receive)(slot *s, uint8_t *data, uint8_t length);



Is "receive" a function pointer?



If it is a function pointer, why does it have named arguments? Should it be like the following one?



bool (*receive)(slot *, uint8_t *, uint8_t);


It certainly compiled and being used in a library. I searched on internet a lot and tried to justify this kind of syntax. I still don't know why this thing can be compiled... :(










share|improve this question
















I recently came across a strange syntax in C program.



struct connector_agent_api
bool (*receive)(slot *s, uint8_t *data, uint8_t length);



Is "receive" a function pointer?



If it is a function pointer, why does it have named arguments? Should it be like the following one?



bool (*receive)(slot *, uint8_t *, uint8_t);


It certainly compiled and being used in a library. I searched on internet a lot and tried to justify this kind of syntax. I still don't know why this thing can be compiled... :(







c function pointers






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 26 at 16:24









John Kugelman

250k54410462




250k54410462










asked Apr 26 at 16:18









ZuckerReisZuckerReis

857




857







  • 20





    These names are for self-documentation only, they have no meaning for the functionality.

    – Eugene Sh.
    Apr 26 at 16:20






  • 7





    Note this is very much like a function declaration in a header file, where parameter names are optional and have no effect on the resulting program.

    – jdehesa
    Apr 26 at 16:21






  • 2





    @EugeneSh. Same as for any other function declaration that's not a definition.

    – Konrad Rudolph
    Apr 26 at 21:04












  • 20





    These names are for self-documentation only, they have no meaning for the functionality.

    – Eugene Sh.
    Apr 26 at 16:20






  • 7





    Note this is very much like a function declaration in a header file, where parameter names are optional and have no effect on the resulting program.

    – jdehesa
    Apr 26 at 16:21






  • 2





    @EugeneSh. Same as for any other function declaration that's not a definition.

    – Konrad Rudolph
    Apr 26 at 21:04







20




20





These names are for self-documentation only, they have no meaning for the functionality.

– Eugene Sh.
Apr 26 at 16:20





These names are for self-documentation only, they have no meaning for the functionality.

– Eugene Sh.
Apr 26 at 16:20




7




7





Note this is very much like a function declaration in a header file, where parameter names are optional and have no effect on the resulting program.

– jdehesa
Apr 26 at 16:21





Note this is very much like a function declaration in a header file, where parameter names are optional and have no effect on the resulting program.

– jdehesa
Apr 26 at 16:21




2




2





@EugeneSh. Same as for any other function declaration that's not a definition.

– Konrad Rudolph
Apr 26 at 21:04





@EugeneSh. Same as for any other function declaration that's not a definition.

– Konrad Rudolph
Apr 26 at 21:04












2 Answers
2






active

oldest

votes


















18














The names of arguments in a function pointer are optional, just as the names of arguments in a function declaration are optional. This is because parameter names if given are not used, so both formats are allowed.



In section 6.7.6.3 of the C standard regarding Function Declarators, which includes both function prototypes and function pointers, paragraph 6 states:




A parameter type list specifies the types of, and may
declare identifiers for, the parameters of the function.




The only place where function parameters require a name is in the actual definition of a function.



For a function definition, Section 6.9.1p5 states:




If the declarator includes a parameter type list, the
declaration of each parameter shall include an identifier, except
for the special case of a parameter list consisting of a single
parameter of type void , in which case there shall not be an
identifier. No declaration list shall follow.







share|improve this answer
































    4














    What makes you think it is a strange syntax? It is a valid declaration as per C standard. The fact that the parameters are named is irrelevant. The naming of such parameters is optional in this case. It can be really helpful if you or someone else is using an IDE because it could display the complete prototype upon using the function pointer to call the function and thus give a hint to the coder about the arguments to be supplied.






    share|improve this answer


















    • 1





      It is also helpful because this sort of struct is used to sort of fake object-like syntax. If the type is actually one meant for the functions to be invoked externally it helps to name the parameters as part of the documentation for that external interface. You are more likely to see code with unnamed parameters to function pointers when the pointers are a callback (rather than call-in).

      – SoronelHaetir
      Apr 27 at 4:04











    • @SoronelHaetir Thanks! I like your point on the call-back and call-in.

      – ZuckerReis
      Apr 28 at 19:39












    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55871507%2ffunction-pointer-with-named-arguments%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    18














    The names of arguments in a function pointer are optional, just as the names of arguments in a function declaration are optional. This is because parameter names if given are not used, so both formats are allowed.



    In section 6.7.6.3 of the C standard regarding Function Declarators, which includes both function prototypes and function pointers, paragraph 6 states:




    A parameter type list specifies the types of, and may
    declare identifiers for, the parameters of the function.




    The only place where function parameters require a name is in the actual definition of a function.



    For a function definition, Section 6.9.1p5 states:




    If the declarator includes a parameter type list, the
    declaration of each parameter shall include an identifier, except
    for the special case of a parameter list consisting of a single
    parameter of type void , in which case there shall not be an
    identifier. No declaration list shall follow.







    share|improve this answer





























      18














      The names of arguments in a function pointer are optional, just as the names of arguments in a function declaration are optional. This is because parameter names if given are not used, so both formats are allowed.



      In section 6.7.6.3 of the C standard regarding Function Declarators, which includes both function prototypes and function pointers, paragraph 6 states:




      A parameter type list specifies the types of, and may
      declare identifiers for, the parameters of the function.




      The only place where function parameters require a name is in the actual definition of a function.



      For a function definition, Section 6.9.1p5 states:




      If the declarator includes a parameter type list, the
      declaration of each parameter shall include an identifier, except
      for the special case of a parameter list consisting of a single
      parameter of type void , in which case there shall not be an
      identifier. No declaration list shall follow.







      share|improve this answer



























        18












        18








        18







        The names of arguments in a function pointer are optional, just as the names of arguments in a function declaration are optional. This is because parameter names if given are not used, so both formats are allowed.



        In section 6.7.6.3 of the C standard regarding Function Declarators, which includes both function prototypes and function pointers, paragraph 6 states:




        A parameter type list specifies the types of, and may
        declare identifiers for, the parameters of the function.




        The only place where function parameters require a name is in the actual definition of a function.



        For a function definition, Section 6.9.1p5 states:




        If the declarator includes a parameter type list, the
        declaration of each parameter shall include an identifier, except
        for the special case of a parameter list consisting of a single
        parameter of type void , in which case there shall not be an
        identifier. No declaration list shall follow.







        share|improve this answer















        The names of arguments in a function pointer are optional, just as the names of arguments in a function declaration are optional. This is because parameter names if given are not used, so both formats are allowed.



        In section 6.7.6.3 of the C standard regarding Function Declarators, which includes both function prototypes and function pointers, paragraph 6 states:




        A parameter type list specifies the types of, and may
        declare identifiers for, the parameters of the function.




        The only place where function parameters require a name is in the actual definition of a function.



        For a function definition, Section 6.9.1p5 states:




        If the declarator includes a parameter type list, the
        declaration of each parameter shall include an identifier, except
        for the special case of a parameter list consisting of a single
        parameter of type void , in which case there shall not be an
        identifier. No declaration list shall follow.








        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Apr 26 at 18:49

























        answered Apr 26 at 16:31









        dbushdbush

        106k15111150




        106k15111150























            4














            What makes you think it is a strange syntax? It is a valid declaration as per C standard. The fact that the parameters are named is irrelevant. The naming of such parameters is optional in this case. It can be really helpful if you or someone else is using an IDE because it could display the complete prototype upon using the function pointer to call the function and thus give a hint to the coder about the arguments to be supplied.






            share|improve this answer


















            • 1





              It is also helpful because this sort of struct is used to sort of fake object-like syntax. If the type is actually one meant for the functions to be invoked externally it helps to name the parameters as part of the documentation for that external interface. You are more likely to see code with unnamed parameters to function pointers when the pointers are a callback (rather than call-in).

              – SoronelHaetir
              Apr 27 at 4:04











            • @SoronelHaetir Thanks! I like your point on the call-back and call-in.

              – ZuckerReis
              Apr 28 at 19:39
















            4














            What makes you think it is a strange syntax? It is a valid declaration as per C standard. The fact that the parameters are named is irrelevant. The naming of such parameters is optional in this case. It can be really helpful if you or someone else is using an IDE because it could display the complete prototype upon using the function pointer to call the function and thus give a hint to the coder about the arguments to be supplied.






            share|improve this answer


















            • 1





              It is also helpful because this sort of struct is used to sort of fake object-like syntax. If the type is actually one meant for the functions to be invoked externally it helps to name the parameters as part of the documentation for that external interface. You are more likely to see code with unnamed parameters to function pointers when the pointers are a callback (rather than call-in).

              – SoronelHaetir
              Apr 27 at 4:04











            • @SoronelHaetir Thanks! I like your point on the call-back and call-in.

              – ZuckerReis
              Apr 28 at 19:39














            4












            4








            4







            What makes you think it is a strange syntax? It is a valid declaration as per C standard. The fact that the parameters are named is irrelevant. The naming of such parameters is optional in this case. It can be really helpful if you or someone else is using an IDE because it could display the complete prototype upon using the function pointer to call the function and thus give a hint to the coder about the arguments to be supplied.






            share|improve this answer













            What makes you think it is a strange syntax? It is a valid declaration as per C standard. The fact that the parameters are named is irrelevant. The naming of such parameters is optional in this case. It can be really helpful if you or someone else is using an IDE because it could display the complete prototype upon using the function pointer to call the function and thus give a hint to the coder about the arguments to be supplied.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Apr 26 at 17:10









            machine_1machine_1

            2,69221332




            2,69221332







            • 1





              It is also helpful because this sort of struct is used to sort of fake object-like syntax. If the type is actually one meant for the functions to be invoked externally it helps to name the parameters as part of the documentation for that external interface. You are more likely to see code with unnamed parameters to function pointers when the pointers are a callback (rather than call-in).

              – SoronelHaetir
              Apr 27 at 4:04











            • @SoronelHaetir Thanks! I like your point on the call-back and call-in.

              – ZuckerReis
              Apr 28 at 19:39













            • 1





              It is also helpful because this sort of struct is used to sort of fake object-like syntax. If the type is actually one meant for the functions to be invoked externally it helps to name the parameters as part of the documentation for that external interface. You are more likely to see code with unnamed parameters to function pointers when the pointers are a callback (rather than call-in).

              – SoronelHaetir
              Apr 27 at 4:04











            • @SoronelHaetir Thanks! I like your point on the call-back and call-in.

              – ZuckerReis
              Apr 28 at 19:39








            1




            1





            It is also helpful because this sort of struct is used to sort of fake object-like syntax. If the type is actually one meant for the functions to be invoked externally it helps to name the parameters as part of the documentation for that external interface. You are more likely to see code with unnamed parameters to function pointers when the pointers are a callback (rather than call-in).

            – SoronelHaetir
            Apr 27 at 4:04





            It is also helpful because this sort of struct is used to sort of fake object-like syntax. If the type is actually one meant for the functions to be invoked externally it helps to name the parameters as part of the documentation for that external interface. You are more likely to see code with unnamed parameters to function pointers when the pointers are a callback (rather than call-in).

            – SoronelHaetir
            Apr 27 at 4:04













            @SoronelHaetir Thanks! I like your point on the call-back and call-in.

            – ZuckerReis
            Apr 28 at 19:39






            @SoronelHaetir Thanks! I like your point on the call-back and call-in.

            – ZuckerReis
            Apr 28 at 19:39


















            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55871507%2ffunction-pointer-with-named-arguments%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

            Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

            What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company