diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2023-05-05 00:07:39 +0100 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2023-05-05 00:07:39 +0100 |
commit | 182b36609acc44d3338f64ca3975e1604b50f619 (patch) | |
tree | eea08823a5ce668148154c322c94193df28eb1af /src/ac.h | |
parent | 3ff6d47277fc0e39053584d8889240cab446a72a (diff) |
Somewhat expand on WIP ac.c stuff
This still isn't totally complete, or used anywhere yet, but it's been
sitting here for literally months, so it might as well get committed so
there's one less thing to deal with later.
Diffstat (limited to 'src/ac.h')
-rw-r--r-- | src/ac.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* - * Copyright © 2022 Michael Smith <mikesmiffy128@gmail.com> + * Copyright © 2023 Michael Smith <mikesmiffy128@gmail.com> * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -17,7 +17,8 @@ #ifndef INC_AC_H #define INC_AC_H -// TODO(rta): keeping this header here as I expect to expose some functions... +bool ac_enable(void); +void ac_disable(void); #endif |