[PR #1446] [CLOSED] Refactor/methods names #2042

Closed
opened 2026-01-29 15:27:59 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1446
Author: @Allan28818
Created: 11/6/2024
Status: Closed

Base: masterHead: refactor/methods-names


📝 Commits (2)

  • 60abb8f refactor(remove-comments): unnecessary comments were removed and also bugs undefined variables were created in /client_server/fork.h, /client_server/udp_client.c and /client_server/udp_server.c
  • 86aa229 refactor(methods-types): bzero was replaced by memset, because bzero is outdated

📊 Changes

13 files changed (+250 additions, -972 deletions)

View changed files

📝 .gitignore (+14 -0)
📝 client_server/bool.h (+6 -26)
📝 client_server/client.c (+18 -41)
📝 client_server/fork.h (+32 -68)
📝 client_server/remote_command_exec_udp_client.c (+19 -107)
📝 client_server/remote_command_exec_udp_server.c (+22 -117)
📝 client_server/server.c (+20 -50)
📝 client_server/tcp_full_duplex_client.c (+20 -122)
📝 client_server/tcp_full_duplex_server.c (+37 -148)
📝 client_server/tcp_half_duplex_client.c (+16 -113)
📝 client_server/tcp_half_duplex_server.c (+25 -135)
📝 client_server/udp_client.c (+9 -21)
📝 client_server/udp_server.c (+12 -24)

📄 Description

No description provided


🔄 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/1446 **Author:** [@Allan28818](https://github.com/Allan28818) **Created:** 11/6/2024 **Status:** ❌ Closed **Base:** `master` ← **Head:** `refactor/methods-names` --- ### 📝 Commits (2) - [`60abb8f`](https://github.com/TheAlgorithms/C/commit/60abb8fea70fa2f9c842d99c2b675e1f94afb2e4) refactor(remove-comments): unnecessary comments were removed and also bugs undefined variables were created in /client_server/fork.h, /client_server/udp_client.c and /client_server/udp_server.c - [`86aa229`](https://github.com/TheAlgorithms/C/commit/86aa229d860a6a1b5626d9154f4ad460b11480ce) refactor(methods-types): bzero was replaced by memset, because bzero is outdated ### 📊 Changes **13 files changed** (+250 additions, -972 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+14 -0) 📝 `client_server/bool.h` (+6 -26) 📝 `client_server/client.c` (+18 -41) 📝 `client_server/fork.h` (+32 -68) 📝 `client_server/remote_command_exec_udp_client.c` (+19 -107) 📝 `client_server/remote_command_exec_udp_server.c` (+22 -117) 📝 `client_server/server.c` (+20 -50) 📝 `client_server/tcp_full_duplex_client.c` (+20 -122) 📝 `client_server/tcp_full_duplex_server.c` (+37 -148) 📝 `client_server/tcp_half_duplex_client.c` (+16 -113) 📝 `client_server/tcp_half_duplex_server.c` (+25 -135) 📝 `client_server/udp_client.c` (+9 -21) 📝 `client_server/udp_server.c` (+12 -24) </details> ### 📄 Description _No description provided_ --- <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:27:59 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#2042