1. 11 Nov, 2014 4 commits
  2. 10 Nov, 2014 2 commits
  3. 07 Nov, 2014 1 commit
  4. 30 Oct, 2014 15 commits
  5. 27 Oct, 2014 3 commits
    • David Gibson's avatar
      mem: Implement memrchr() · 40b45c4c
      David Gibson authored
      The memrchr() function, which works like memchr(), but searches from the
      back of the region to the front is implemented in the GNU C library, but
      isn't standard.
      
      This patch adds an implementation of the function to the mem module, when
      it's not available in the system C library.
      Signed-off-by: default avatarDavid Gibson <david@gibson.dropbear.id.au>
      40b45c4c
    • David Gibson's avatar
      mem: Correct testcases · 2ab3ac5b
      David Gibson authored
      Currently the 'mem' module testcases use test/run.c even though they don't
      rely on access to the module internals.  They're also missing an include
      of mem.c, which has the effect that on systems with a C library memmem()
      implementaiton, only that is tested, not the (re-)implementation in the
      mem module itself.  This corrects that by moving run.c to api.c/
      
      Additionally, the memmem() testcases don't cover the case where the
      "needle" appears multiple times in the "haystack".  This patch also adds
      such a test.
      Signed-off-by: default avatarDavid Gibson <david@gibson.dropbear.id.au>
      2ab3ac5b
    • David Gibson's avatar
      mem: Rename memmem module to mem · 992931f0
      David Gibson authored
      Currently the 'memmem' module does nothing but provide an implementation of
      the memmem() function if it is missing from the standard C library.
      
      However there are other functions (e.g. memrchr()) also missing from some
      C library implementations, so rename the module to mem to allow future
      inclusion of other functions.
      
      This also updates the rfc822 module - the only existing user of the
      memmem module - to use the new name.
      Signed-off-by: default avatarDavid Gibson <david@gibson.dropbear.id.au>
      992931f0
  6. 25 Oct, 2014 6 commits
  7. 23 Oct, 2014 1 commit
    • Chris McCormick's avatar
      Changed the look of the website. Added a new logo design (source SVG... · 08f71340
      Chris McCormick authored
      Changed the look of the website. Added a new logo design (source SVG included). Fixed an issue with junkcode prefix not being set (broken links and images on current site). Removed /tmp/ccan in clean as it was preventing 'make webpages' running twice. Brought the HTML closer to standards compliance (doctype, encoding). Added meta tag for mobile device browsers to render nicely.
      08f71340
  8. 13 Oct, 2014 7 commits
  9. 13 Sep, 2014 1 commit