I have a few questions regarding comment length in code:

   1.

   Is it permissible for a comment (either single-line or multi-line) to
   exceed 75 characters on a single line?
   2.

   In the case of structure members, can the comment associated with a
   member exceed 75 characters?
   3.

   When considering the length of the line in question 2, should the
   character count include only the structure member itself, or should it
   encompass both the member and its associated comment? For example, in the
   following structure definition:

struct car {
>     char *name; /* the name of the car, also consider this comment length
> to be more than 75 charcters */
>     ...
> };


How should the character count be determined?

Thank you!
_______________________________________________
discuss mailing list
disc...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-discuss

Reply via email to