Changed multi-line C comments into another style.
The left side doesn't look unbalanced.
This commit is contained in:
@@ -111,9 +111,9 @@ Span* ReadSpan (FILE* F, ObjData* O, unsigned Id)
|
||||
|
||||
unsigned* ReadSpanList (FILE* F)
|
||||
/* Read a list of span ids from a file. The list is returned as an array of
|
||||
* unsigneds, the first being the number of spans (never zero) followed by
|
||||
* the span ids. If the number of spans is zero, NULL is returned.
|
||||
*/
|
||||
** unsigneds, the first being the number of spans (never zero) followed by
|
||||
** the span ids. If the number of spans is zero, NULL is returned.
|
||||
*/
|
||||
{
|
||||
unsigned* Spans;
|
||||
|
||||
@@ -187,9 +187,9 @@ unsigned SpanCount (void)
|
||||
|
||||
void PrintDbgSpanList (FILE* F, const ObjData* O, const unsigned* List)
|
||||
/* Output a string ",span=x[+y...]" for the given list. If the list is empty
|
||||
* or NULL, output nothing. This is a helper function for other modules to
|
||||
* print a list of spans read by ReadSpanList to the debug info file.
|
||||
*/
|
||||
** or NULL, output nothing. This is a helper function for other modules to
|
||||
** print a list of spans read by ReadSpanList to the debug info file.
|
||||
*/
|
||||
{
|
||||
if (List && *List) {
|
||||
unsigned I;
|
||||
|
||||
Reference in New Issue
Block a user