Lines Matching refs:line
30 Generally, line lengths up to 100 characters are acceptable in the code.
44 * VERY important single-line comments look like this.
47 /* Most single-line comments look like this. */
50 * Multi-line comments look like this. Make them real sentences. Fill
64 After any copyright header, a blank line should be left before any other contents, e.g. include sta…
297 * Each structure element gets its own line.
441 * If you have to wrap a long statement, put the operator at the end of the line, and indent again.
442 * For control statements (if, while, etc.), continuation it is recommended that the next line be in…
443 …to prevent confusion as to whether the second line of the control statement forms part of the stat…
444 …Alternatively, the line continuation may use additional spaces to line up to an appropriately poin…
454 x = y + z; /* control stmt body lines up with second line of */
469 * Do not add whitespace at the end of a line.
471 * Do not add whitespace or a blank line at the end of a file.
478 …o or just a single statement, unless that statement is more than a single line in which case the b…
508 * Closing and opening braces go on the same line as the else keyword.
561 * When declaring variables in functions, multiple variables per line are OK.
562 …ns would cause the line to exceed a reasonable line length, begin a new set of declarations on the…
563 …y initializing variables in the declarations, only the last variable on a line should be initializ…
564 If multiple variables are to be initialized when defined, put one per line.
571 char a = 0; /* OK, one variable per line with initializer */
606 * Short function prototypes should be contained on a single line.
608 …The second and subsequent lines should be further indented as for line statement continuations as …
620 …initions, the function prototypes do not need to place the function return type on a separate line.
625 * The function type should be on a line by itself preceding the function.
626 * The opening brace of the function body should be on a line by itself.
1085 …Any line continuations beyond the first may be singly indented to avoid large amounts of indentati…
1087 * Where a line is split in the middle of a statement, e.g. a multiline `if` statement,
1088 brackets should be used in preference to escaping the line break.
1092 if (condition1 and condition2 # line breaks inside () need no escaping
1101 …For a small number of list entries, generally 3 or fewer, all elements may be put on a single line.
1102 …In this case, the opening and closing braces of the list must be on the same line as the list item…
1105 it is recommended that the lists be put in the files with a *single* entry per line.
1106 In this case, the opening brace, or ``files`` function call must be on a line on its own,
1107 and the closing brace must similarly be on a line on its own at the end.
1111 so that adding a new entry to the list never modifies any other line in the list.