Skip to content
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

Improve sscanf() signature #567

Merged
merged 8 commits into from
Jul 7, 2021
Merged

Improve sscanf() signature #567

merged 8 commits into from
Jul 7, 2021

Commits on Jun 29, 2021

  1. Improve sscanf() signature

     If only two parameters were passed to this function, the values parsed will be returned as an array. Otherwise, if optional parameters are passed, the function will return the number of assigned values. The optional parameters must be passed by reference.
    
    If there are more substrings expected in the format than there are available within string, null will be returned. 
    
    https://www.php.net/manual/en/function.sscanf.php
    fluffycondor committed Jun 29, 2021
    Configuration menu
    Copy the full SHA
    aa83868 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2021

  1. Add sccanf tests

    fluffycondor committed Jul 6, 2021
    Configuration menu
    Copy the full SHA
    0131ac4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bba77ab View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0286ffd View commit details
    Browse the repository at this point in the history
  4. Fix a typo

    fluffycondor committed Jul 6, 2021
    Configuration menu
    Copy the full SHA
    deabae1 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2021

  1. Configuration menu
    Copy the full SHA
    e99fcc3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    549ed6f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3b9399d View commit details
    Browse the repository at this point in the history