sm

sysmgr implemented in C
git clone git://git.ckyln.com/sm
Log | Files | Refs | README | LICENSE

LICENSE (1667B)


      1 Some of the utility functions here are taken from other places, here are their
      2 licenses. See the files for more information. Most of those are from sbase, but
      3 some of the ones from sbase are taken from other places as well.
      4 
      5 enprintf.c, mkdirp.c
      6   Taken from https://core.suckless.org/sbase.          MIT/X Consortium License
      7 rm.c
      8   Taken from https://stackoverflow.com/a/5467788.                  CC BY-SA 2.5
      9 strlcpy.c
     10   Taken from sbase. Copyright (c) 1998 Todd C. Miller.              ISC License
     11 
     12 --------------------------------------------------------------------------------
     13 
     14 Copyright (c) 2020-2021 Cem Keylan <cem@ckyln.com>
     15 
     16 Permission is hereby granted, free of charge, to any person obtaining a copy of
     17 this software and associated documentation files (the “Software”), to deal in
     18 the Software without restriction, including without limitation the rights to
     19 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
     20 the Software, and to permit persons to whom the Software is furnished to do so,
     21 subject to the following conditions:
     22 
     23 The above copyright notice and this permission notice shall be included in all
     24 copies or substantial portions of the Software.
     25 
     26 THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     27 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
     28 FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
     29 COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
     30 IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
     31 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.