[PR #709] [CLOSED] Bug fixes, Formatting source code, & Renaming files to google standard #1198

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/709
Author: @Suraj-Patro
Created: 10/23/2020
Status: Closed

Base: masterHead: master


📝 Commits (8)

📊 Changes

29 files changed (+165 additions, -243 deletions)

View changed files

📝 conversions/binary_to_decimal.c (+4 -4)
📝 conversions/binary_to_hexadecimal.c (+4 -3)
📝 conversions/binary_to_octal.c (+7 -2)
📝 conversions/c_atoi_str_to_integer.c (+11 -0)
📝 conversions/decimal_to_binary.c (+5 -5)
📝 conversions/decimal_to_hexa.c (+1 -0)
📝 conversions/decimal_to_octal.c (+1 -1)
📝 conversions/decimal_to_octal_recursion.c (+2 -2)
📝 conversions/hexadecimal_to_octal.c (+1 -1)
📝 conversions/hexadecimal_to_octal2.c (+5 -5)
📝 conversions/octal_to_binary.c (+13 -13)
📝 conversions/octal_to_decimal.c (+0 -7)
📝 conversions/to_decimal.c (+1 -1)
📝 data_structures/array/README.md (+3 -3)
📝 data_structures/array/carray.c (+5 -4)
📝 data_structures/array/carray.h (+3 -3)
📝 data_structures/array/carray_tests.c (+5 -4)
📝 data_structures/binary_trees/avl_tree.c (+1 -1)
📝 data_structures/binary_trees/binary_search_tree.c (+5 -4)
📝 data_structures/binary_trees/recursive_traversals.c (+1 -1)

...and 9 more files

📄 Description

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:
Bug fixed in conversions/c_atoi_str_to_integer.c & formatting


🔄 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/709 **Author:** [@Suraj-Patro](https://github.com/Suraj-Patro) **Created:** 10/23/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (8) - [`aaa69f0`](https://github.com/TheAlgorithms/C/commit/aaa69f0d17f9e901b8469f9fa2d77a831c73b32f) Add files via upload - [`c134326`](https://github.com/TheAlgorithms/C/commit/c134326ec1d13b47ac1435c462be5f0b6c20a554) Add files via upload - [`a152e87`](https://github.com/TheAlgorithms/C/commit/a152e87c37ea27be1c0f111b303b72b722ef3566) formatting source_code - [`17bad30`](https://github.com/TheAlgorithms/C/commit/17bad303f0a8d9072344928468add54468eea83b) adding limits.h - [`097bc6b`](https://github.com/TheAlgorithms/C/commit/097bc6bbecac77a5e9d1194fba0572cde634b4b1) adding limits.h - [`f267984`](https://github.com/TheAlgorithms/C/commit/f2679848fcf6b1aecc3019616154fbddbdb4ae9e) formatting source & bug fixes - [`53a360e`](https://github.com/TheAlgorithms/C/commit/53a360e58fad00550a585ae17096696d278f339a) formatting source code - [`af1639a`](https://github.com/TheAlgorithms/C/commit/af1639ab21230902aa1c80f5cdc9f0d57d76c106) Delete a.out ### 📊 Changes **29 files changed** (+165 additions, -243 deletions) <details> <summary>View changed files</summary> 📝 `conversions/binary_to_decimal.c` (+4 -4) 📝 `conversions/binary_to_hexadecimal.c` (+4 -3) 📝 `conversions/binary_to_octal.c` (+7 -2) 📝 `conversions/c_atoi_str_to_integer.c` (+11 -0) 📝 `conversions/decimal_to_binary.c` (+5 -5) 📝 `conversions/decimal_to_hexa.c` (+1 -0) 📝 `conversions/decimal_to_octal.c` (+1 -1) 📝 `conversions/decimal_to_octal_recursion.c` (+2 -2) 📝 `conversions/hexadecimal_to_octal.c` (+1 -1) 📝 `conversions/hexadecimal_to_octal2.c` (+5 -5) 📝 `conversions/octal_to_binary.c` (+13 -13) 📝 `conversions/octal_to_decimal.c` (+0 -7) 📝 `conversions/to_decimal.c` (+1 -1) 📝 `data_structures/array/README.md` (+3 -3) 📝 `data_structures/array/carray.c` (+5 -4) 📝 `data_structures/array/carray.h` (+3 -3) 📝 `data_structures/array/carray_tests.c` (+5 -4) 📝 `data_structures/binary_trees/avl_tree.c` (+1 -1) 📝 `data_structures/binary_trees/binary_search_tree.c` (+5 -4) 📝 `data_structures/binary_trees/recursive_traversals.c` (+1 -1) _...and 9 more files_ </details> ### 📄 Description #### 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]. --> - [x] Added description of change - [x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [x] Added tests and example, test must pass - [x] Relevant documentation/comments is changed or added - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [x] Search previous suggestions before making a new one, as yours may be a duplicate. - [x] 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 --> Bug fixed in conversions/c_atoi_str_to_integer.c & formatting <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/709"><img src="https://gitpod.io/api/apps/github/pbs/github.com/Suraj-Patro/C.git/af1639ab21230902aa1c80f5cdc9f0d57d76c106.svg" /></a> <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/709"><img src="https://gitpod.io/api/apps/github/pbs/github.com/Suraj-Patro/C.git/af1639ab21230902aa1c80f5cdc9f0d57d76c106.svg" /></a> --- <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:18:19 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1198