-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#348 Review usage of fgets in file reading #398
Closed
Closed
Changes from all commits
Commits
Show all changes
67 commits
Select commit
Hold shift + click to select a range
38e6af1
Merge pull request #1 from Tlf/master
darvark 19621b8
Add keyword to start tlf in S&P mode
darvark b294490
Fix formating
darvark f8a986a
Move setup operation mode to config file
darvark 2d0318e
Update manual and added test for new function
darvark b3500cf
Fix tests
darvark 2e6e2f6
Post review fixes.
darvark eddfbfd
Update man pages
darvark 5fe36d5
Move operating_mode initalization to init_variables
darvark d10b061
Update ToDo. Marked item finished
darvark a948f90
Initial commit for Issue #348 - removing usage of fgets and switching…
darvark 974d984
restore rules content
darvark 579e53d
restore execute bit
darvark 7a11229
Merge branch 'Tlf:master' into master
darvark c5a5841
Add keyword to start tlf in S&P mode
darvark 0ce1332
Fix formating
darvark 0a7ef03
Move setup operation mode to config file
darvark 8cf8548
Update manual and added test for new function
darvark 4e58d00
Fix tests
darvark 9bf132c
Post review fixes.
darvark c0d8c67
Update man pages
darvark 42da065
Move operating_mode initalization to init_variables
darvark 1ec81e9
Update ToDo. Marked item finished
darvark cb7dce9
Make band limits configurable (#392)
zcsahok 24b4d1a
Initial commit for Issue #348 - removing usage of fgets and switching…
darvark 06d6617
Initial commit for Issue #348 - removing usage of fgets and switching…
darvark ae33beb
restore rules content
darvark 7fb00c5
restore execute bit
darvark bc6ca57
Initial commit for Issue #348 - removing usage of fgets and switching…
darvark 35947c7
rebase
darvark 717e2de
redesign usage of getline
darvark 25f74ad
Update usage of getline, free memory and check if getline read something
darvark e7a65a4
Merge branch 'Tlf:master' into master
darvark d79be5d
Move setup operation mode to config file
darvark c3738ac
Fix tests
darvark 4c45c92
Post review fixes.
darvark 5f33659
add errno handling
darvark c87650d
review fix
darvark ba4fcc4
fix typo
darvark 386d7e9
Initial commit for Issue #348 - removing usage of fgets and switching…
darvark 667a8ff
restore rules content
darvark 1a67f3a
restore execute bit
darvark 4459401
Initial commit for Issue #348 - removing usage of fgets and switching…
darvark 6d6c384
restore rules content
darvark 8ff132d
restore execute bit
darvark 24449ac
Add keyword to start tlf in S&P mode
darvark 6000ef6
Fix formating
darvark b956da7
Move setup operation mode to config file
darvark 34ca3b2
Fix tests
darvark 681436e
Post review fixes.
darvark d7575f9
Initial commit for Issue #348 - removing usage of fgets and switching…
darvark f25766a
redesign usage of getline
darvark 18b5b58
Update usage of getline, free memory and check if getline read something
darvark f56f09c
Move setup operation mode to config file
darvark 71f148c
Fix tests
darvark 0d65145
Post review fixes.
darvark 9191912
add errno handling
darvark 7657f96
review fix
darvark 347c23a
fix typo
darvark e2fd510
Merge branch '348-remove-fgets' of https://github.com/darvark/tlf-sp6…
darvark 0c90128
restore test rules
darvark 67d076f
restore run_tlf.py permissions
darvark eb7e2ef
fix astyle, add check to errno == ENOMEM
darvark ca794d3
add missing include errno.h
darvark 487f21e
reformat and add check for memory
darvark 683adb4
Revert "reformat and add check for memory"
darvark 8b6e88c
restore default formating with astyle
darvark File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comparing a pointer and 0. It works, but using the typical check
would be clearer.