checkout.h 129 Bytes
#ifndef CHECKOUT_H
#define CHECKOUT_H

#include <stdbool.h>

void checkout(const char *checkout_name, bool make_branch);

#endif