• Source
    1. int ret_val = 1;
    2. while (ret_val > 0) {
    3. ret_val = some_function();
    4. } while (ret_val > 0);
    5.