/* * include/builtin.h * * HUSH builtin commands module * CISC 301 -- Operating Systems, Project 2 * * Copyright (C) 2025 Douglas B. Rumbaugh * * Distributed under the Modified BSD License * */ #ifndef H_HUSH_BUILTIN #define H_HUSH_BUILTIN #include #include #include "command.h" #include "variables.h" /* * Check if the provided command corresponds with a known built-in * function. If so, run the builtin and return true. If not, return * false. */ bool run_builtin(command *cmd); #endif