[PR #820] [MERGED] feat: printf statement written in c (as minprintf) without using stdio.h li… #1336

Open
opened 2026-01-29 15:19:25 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/820
Author: @Jaskarn7
Created: 3/28/2021
Status: Merged
Merged: 4/3/2021
Merged by: @ayaankhan98

Base: masterHead: master


📝 Commits (10+)

  • f2b00c6 printf statement written in c (as minprintf) without using stdio.h library.
  • 2b35bfd Added proper documentation in minprintf.h
  • 05417a9 Modified and more Documented code.
  • 88bc2ca Requested changes commited
  • 942ac80 Referance links added
  • 0ea6ed9 updating DIRECTORY.md
  • 37357a5 Renamed the file
  • 2968e34 Merge branch 'master' of github.com:Jaskarn7/C
  • f5e6f20 updating DIRECTORY.md
  • 5774c78 Test file added

📊 Changes

3 files changed (+396 additions, -0 deletions)

View changed files

📝 DIRECTORY.md (+2 -0)
developer_tools/min_printf.h (+352 -0)
developer_tools/test_min_printf.c (+42 -0)

📄 Description

…brary.

Description of Change

References

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Added tests and example, test must pass
  • Relevant documentation/comments is changed or added
  • PR title follows semantic commit guidelines
  • Search previous suggestions before making a new one, as yours may be a duplicate.
  • I acknowledge that all my contributions will be made under the project's license.

Notes:


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/820 **Author:** [@Jaskarn7](https://github.com/Jaskarn7) **Created:** 3/28/2021 **Status:** ✅ Merged **Merged:** 4/3/2021 **Merged by:** [@ayaankhan98](https://github.com/ayaankhan98) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`f2b00c6`](https://github.com/TheAlgorithms/C/commit/f2b00c6b2eb3d2bb11d183f2d74139233223bd8f) printf statement written in c (as minprintf) without using stdio.h library. - [`2b35bfd`](https://github.com/TheAlgorithms/C/commit/2b35bfdba9d5f3f69ba983731f0b27d8e27895eb) Added proper documentation in minprintf.h - [`05417a9`](https://github.com/TheAlgorithms/C/commit/05417a94851c74662be7a75fe1b016b6b7aa0063) Modified and more Documented code. - [`88bc2ca`](https://github.com/TheAlgorithms/C/commit/88bc2cad51bcc91efcb373930ed9ac9410da694d) Requested changes commited - [`942ac80`](https://github.com/TheAlgorithms/C/commit/942ac8053c6d35e837b9614f5771be29e52f2dab) Referance links added - [`0ea6ed9`](https://github.com/TheAlgorithms/C/commit/0ea6ed982db236f74a4b881957b4be11d7e16bb0) updating DIRECTORY.md - [`37357a5`](https://github.com/TheAlgorithms/C/commit/37357a533b246619fde7d11ed94f0d4002e8447f) Renamed the file - [`2968e34`](https://github.com/TheAlgorithms/C/commit/2968e346504d11319cc98955e105409e37284b46) Merge branch 'master' of github.com:Jaskarn7/C - [`f5e6f20`](https://github.com/TheAlgorithms/C/commit/f5e6f20cd64ce0f4d39635e3fa32c07cb677b590) updating DIRECTORY.md - [`5774c78`](https://github.com/TheAlgorithms/C/commit/5774c7884eb1233485a8f9ca4e48548d5126495f) Test file added ### 📊 Changes **3 files changed** (+396 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+2 -0) ➕ `developer_tools/min_printf.h` (+352 -0) ➕ `developer_tools/test_min_printf.c` (+42 -0) </details> ### 📄 Description …brary. #### Description of Change <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md --> #### References <!-- Add any reference to previous pull-request or issue --> #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [ ] Added description of change - [ ] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [ ] Added tests and example, test must pass - [ ] Relevant documentation/comments is changed or added - [ ] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [ ] Search previous suggestions before making a new one, as yours may be a duplicate. - [ ] I acknowledge that all my contributions will be made under the project's license. Notes: <!-- Please add a one-line description for developers or pull request viewers --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:19:25 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1336