diff options
author | Arjun Satarkar <me@arjunsatarkar.net> | 2023-06-01 13:31:24 +0000 |
---|---|---|
committer | Arjun Satarkar <me@arjunsatarkar.net> | 2023-06-01 13:33:56 +0000 |
commit | 3a2fef94230f35d948634ffef83660afdffa0bad (patch) | |
tree | e4fb261e6fcf6d0b4b3d4b688aa94757700f45ab /lib/hitomezashi_utils.h | |
parent | 316382d74ed4a705c43e2380e7af20a500c24fa9 (diff) | |
download | hitomezashi-3a2fef94230f35d948634ffef83660afdffa0bad.tar hitomezashi-3a2fef94230f35d948634ffef83660afdffa0bad.tar.gz hitomezashi-3a2fef94230f35d948634ffef83660afdffa0bad.zip |
Complete libhitomezashi, reset project
Diffstat (limited to 'lib/hitomezashi_utils.h')
-rw-r--r-- | lib/hitomezashi_utils.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/hitomezashi_utils.h b/lib/hitomezashi_utils.h deleted file mode 100644 index 95a5a3f..0000000 --- a/lib/hitomezashi_utils.h +++ /dev/null @@ -1,17 +0,0 @@ -/** @file - * Utilities connected with hitomezashi patterns that may be useful to - * applications. - */ -#ifndef HITOMEZASHI_UTILS_H -#define HITOMEZASHI_UTILS_H - -#include <stddef.h> - -/** Convert a string of ASCII digit 0s and 1s, eg. "1010", to a char array of - * numeric 0s and 1s. The return value is **dynamically allocated and must - * be freed**. - * @param len Length of ascii_str, not including any terminating null bytes. - */ -char *hitomezashi_ascii_binary_str_to_ints(const char *ascii_str, size_t len); - -#endif // HITOMEZASHI_UTILS_H |