aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
AgeCommit message (Expand)AuthorFilesLines
2019-08-16TOX: Make tc_naming voting.Peter Mikus1-2/+1
2019-08-15TOX: DOC verifyPeter Mikus1-1/+8
2019-08-14DO_NOT_MERGE CSIT-1194 - Framework easy pylint improvementsMiroslav Los1-0/+1
2019-07-31TOX: Coverage checkPeter Mikus1-1/+6
2019-07-19TOX: Naming conventionsPeter Mikus1-1/+6
2019-07-02Replace license checker with global noticesVratko Polak1-5/+1
2019-06-28Add copyright checker to toxVratko Polak1-5/+7
2019-04-08Upgrade autogen to NICs and search typesVratko Polak1-0/+2
2019-03-21Update and reorder tox.ini TODOsVratko Polak1-3/+3
2019-03-20Add tox checker for lengths of new lines onlyVratko Polak1-11/+14
2019-02-27Add tox.ini and few checker scriptsVratko Polak1-0/+70
LAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef included_clib_unix_h #define included_clib_unix_h #include <vppinfra/error.h> /* Number of bytes in a Unix file. */ clib_error_t *clib_file_n_bytes (char *file, uword * result); /* Read file contents into given buffer. */ clib_error_t *clib_file_read_contents (char *file, u8 * result, uword n_bytes); /* Read and return contents of Unix file. */ clib_error_t *clib_file_contents (char *file, u8 ** result); /* As above but for /proc file system on Linux. */ clib_error_t *unix_proc_file_contents (char *file, u8 ** result); #endif /* included_clib_unix_h */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */