diff options
author | QMK Bot <hello@qmk.fm> | 2022-04-21 21:49:28 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-04-21 21:49:28 +0000 |
commit | f44d569144c3303dd0db6be94b5d6e7c7942577a (patch) | |
tree | 9718242eaaf87bad798abde6f79dadc839d83129 /users/mtei/pseudo_sprintf.h | |
parent | 8f692e22e3ce176671bbdde51478ce0e6a57875b (diff) | |
parent | c2939bf03833e013742ecc74d8229832c88656c2 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'users/mtei/pseudo_sprintf.h')
-rw-r--r-- | users/mtei/pseudo_sprintf.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/users/mtei/pseudo_sprintf.h b/users/mtei/pseudo_sprintf.h new file mode 100644 index 0000000000..1b91ee5ea8 --- /dev/null +++ b/users/mtei/pseudo_sprintf.h @@ -0,0 +1,8 @@ +// Copyright 2022 Takeshi Ishii (@mtei) +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +char *sprints(char *buf, char *src); +char *sprintd(char *buf, char *leadstr, int data); +char *sprint2d(char *buf, char *leadstr, int data); |