Fix syntax style to have a space after while and before (.
f_u_long scale = 0;
f_u_long temp_digit = 0;
- while(current_location < location.stop) {
+ while (current_location < location.stop) {
if (f_character_to_digit(string[current_location], &temp_digit) == f_none) {
// when the scale exists, then we need to make the number larger, for this function the scale is base 10
f_u_long scale = 0;
f_u_long temp_digit = 0;
- while(current_location < location.stop) {
+ while (current_location < location.stop) {
if (f_character_to_hexdigit(string[current_location], &temp_digit) == f_none) {
// when the scale exists, then we need to make the number larger, for this function the scale is base 16
fl_macro_fss_content_return_on_overflow((*buffer), (*input), (*found), f_none_on_eos, f_none_on_stop)
if (!isgraph(buffer->string[input->start])) {
- while(buffer->string[input->start] != f_eol) {
+ while (buffer->string[input->start] != f_eol) {
++input->start;
if (input->start >= buffer->used) {
}
// seek to the end of the line
- while(input->start < buffer->used && input->start <= input->stop && buffer->string[input->start] != f_eol) {
+ while (input->start < buffer->used && input->start <= input->stop && buffer->string[input->start] != f_eol) {
++input->start;
}
#ifndef _di_fl_macro_fss_object_seek_till_newline_
#define fl_macro_fss_object_seek_till_newline(buffer, input, eos_status, stop_status) \
- while(buffer.string[input.start] != f_eol) { \
+ while (buffer.string[input.start] != f_eol) { \
++input.start; \
if (input.start >= buffer.used) { \
return eos_status; \
#ifndef _di_fl_macro_fss_content_seek_till_newline_
#define fl_macro_fss_content_seek_till_newline(buffer, input, found, eos_status, stop_status) \
- while(buffer.string[input.start] != f_eol) { \
+ while (buffer.string[input.start] != f_eol) { \
++input.start; \
if (input.start >= buffer.used) { \
found.array[found.used].stop = input.stop; \