Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jmccrohan/lcd4linux
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: trunk
Choose a base ref
...
head repository: updateing/lcd4linux
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: trunk
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on Apr 23, 2016

  1. Add operator \ and %%

    * \ : Integral division (division keeping only integral part)
    * %% : Integral modulo
    updateing committed Apr 23, 2016
    Configuration menu
    Copy the full SHA
    676d793 View commit details
    Browse the repository at this point in the history
  2. Add charat() and rcharat() to plugin_string.c

    * charat():
      Prototype: charat(string, pos)
      Function: Returns the character at `pos` in the `string`.
                Returns empty string if `pos` is longer than the string.
                The paramater `pos` begins from 0, so charat("abc", 1)
                    will give "b".
    
    * rcharat():
      Prototype rcharat(string, pos)
      Function: Nearly the same as above, except it returns the character
                  at `strlen(string) - pos -1` (as if it counts from the end
                  of the string).
                The parameter `pos` also begins from 0. rcharat("abc", 0)
                  will give "c".
    updateing committed Apr 23, 2016
    Configuration menu
    Copy the full SHA
    8657a1e View commit details
    Browse the repository at this point in the history
  3. Allow running 'exec' one-shot

    * Just set the delay to 0: exec(cmd, 0), then the cmd will
      be run only once.
    updateing committed Apr 23, 2016
    Configuration menu
    Copy the full SHA
    1cac8ce View commit details
    Browse the repository at this point in the history
Loading