[PR #1462] [CLOSED] recuperacion #2062

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1462
Author: @Pabloxocio
Created: 3/5/2025
Status: Closed

Base: masterHead: cleanup


📝 Commits (5)

📊 Changes

21 files changed (+628 additions, -135 deletions)

View changed files

📝 .github/workflows/awesome_workflow.yml (+4 -49)
.github/workflows/directory_writer.yml (+29 -0)
📝 .github/workflows/leetcode_directory_writer.yml (+3 -3)
📝 .gitignore (+1 -0)
📝 CMakeLists.txt (+7 -8)
📝 DIRECTORY.md (+2 -0)
📝 README.md (+1 -1)
📝 client_server/CMakeLists.txt (+19 -11)
client_server/bool.h (+55 -0)
client_server/fork.h (+298 -0)
📝 client_server/remote_command_exec_udp_client.c (+14 -5)
📝 client_server/remote_command_exec_udp_server.c (+14 -5)
📝 client_server/tcp_full_duplex_client.c (+18 -4)
📝 client_server/tcp_full_duplex_server.c (+26 -5)
📝 client_server/tcp_half_duplex_client.c (+14 -5)
📝 client_server/tcp_half_duplex_server.c (+14 -5)
📝 developer_tools/min_printf.h (+5 -1)
📝 dynamic_programming/matrix_chain_order.c (+58 -30)
📝 graphics/CMakeLists.txt (+1 -1)
scripts/file_linter.py (+40 -0)

...and 1 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:


🔄 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/1462 **Author:** [@Pabloxocio](https://github.com/Pabloxocio) **Created:** 3/5/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `cleanup` --- ### 📝 Commits (5) - [`40aefea`](https://github.com/TheAlgorithms/C/commit/40aefea1e310549d492e4f0408476493aedd692f) Squashing commits - [`bbf7fbb`](https://github.com/TheAlgorithms/C/commit/bbf7fbb89a9d99a358a829c7203e360fab6d0265) chore: add the linter to a separate Python script (#1272) - [`f5799e8`](https://github.com/TheAlgorithms/C/commit/f5799e808f64b5cb72b06f45b5eb91f2a7a136b1) fix: add missing `include` in CMakeLists #942 (#1285) - [`a81d63e`](https://github.com/TheAlgorithms/C/commit/a81d63e5997b54df9a9540f141c0244a2bacc4c0) Examen de EED - [`309e4c5`](https://github.com/TheAlgorithms/C/commit/309e4c598bf43fad1d56652b24243fe3897346a5) feat: use directory workflow from the `scripts` repository (#1278) ### 📊 Changes **21 files changed** (+628 additions, -135 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/awesome_workflow.yml` (+4 -49) ➕ `.github/workflows/directory_writer.yml` (+29 -0) 📝 `.github/workflows/leetcode_directory_writer.yml` (+3 -3) 📝 `.gitignore` (+1 -0) 📝 `CMakeLists.txt` (+7 -8) 📝 `DIRECTORY.md` (+2 -0) 📝 `README.md` (+1 -1) 📝 `client_server/CMakeLists.txt` (+19 -11) ➕ `client_server/bool.h` (+55 -0) ➕ `client_server/fork.h` (+298 -0) 📝 `client_server/remote_command_exec_udp_client.c` (+14 -5) 📝 `client_server/remote_command_exec_udp_server.c` (+14 -5) 📝 `client_server/tcp_full_duplex_client.c` (+18 -4) 📝 `client_server/tcp_full_duplex_server.c` (+26 -5) 📝 `client_server/tcp_half_duplex_client.c` (+14 -5) 📝 `client_server/tcp_half_duplex_server.c` (+14 -5) 📝 `developer_tools/min_printf.h` (+5 -1) 📝 `dynamic_programming/matrix_chain_order.c` (+58 -30) 📝 `graphics/CMakeLists.txt` (+1 -1) ➕ `scripts/file_linter.py` (+40 -0) _...and 1 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]. --> - [ ] 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:28:15 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#2062