~ubuntu-branches/ubuntu/trusty/kmod/trusty

« back to all changes in this revision

Viewing changes to libkmod/libkmod-index.h

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2013-10-24 06:16:30 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20131024061630-o87ipf2zxqtpigls
Tags: 15-0ubuntu1
* New upstream release. (See Debian #716739)
* Drop patches included upstream: dot_kcmdline, bad_alias_assertion,
  blacklist_aliased.
* Drop check_builtin_kver, this would only apply to lucid and is otherwise
  unnecessary.
* Drop --disable-shared/--enable-static, this got dropped in this version
  and isn't necessary any more. /bin/kmod does not dynamically link to
  libkmod by default now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * libkmod - interface to kernel module operations
3
3
 *
4
 
 * Copyright (C) 2011-2012  ProFUSION embedded systems
 
4
 * Copyright (C) 2011-2013  ProFUSION embedded systems
5
5
 *
6
6
 * This library is free software; you can redistribute it and/or
7
7
 * modify it under the terms of the GNU Lesser General Public
18
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#ifndef _LIBKMOD_INDEX_H
22
 
#define _LIBKMOD_INDEX_H
 
21
#pragma once
23
22
 
24
23
#include <stdint.h>
25
24
 
127
126
char *index_mm_search(struct index_mm *idx, const char *key);
128
127
struct index_value *index_mm_searchwild(struct index_mm *idx, const char *key);
129
128
void index_mm_dump(struct index_mm *idx, int fd, const char *prefix);
130
 
 
131
 
#endif