argify.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Copyright (C) 2001-2003 Hewlett-Packard Co.
  3. * Contributed by Stephane Eranian <eranian@hpl.hp.com>
  4. *
  5. * Copyright (C) 2001 Silicon Graphics, Inc.
  6. * Contributed by Brent Casavant <bcasavan@sgi.com>
  7. *
  8. * Copyright (C) 2006-2009 Intel Corporation
  9. * Contributed by Fenghua Yu <fenghua.yu@intel.com>
  10. * Contributed by Bibo Mao <bibo.mao@intel.com>
  11. * Contributed by Chandramouli Narayanan <mouli@linux.intel.com>
  12. *
  13. * This file is part of the ELILO, the EFI Linux boot loader.
  14. *
  15. * ELILO is free software; you can redistribute it and/or modify
  16. * it under the terms of the GNU General Public License as published by
  17. * the Free Software Foundation; either version 2, or (at your option)
  18. * any later version.
  19. *
  20. * ELILO is distributed in the hope that it will be useful,
  21. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  23. * GNU General Public License for more details.
  24. *
  25. * You should have received a copy of the GNU General Public License
  26. * along with ELILO; see the file COPYING. If not, write to the Free
  27. * Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  28. * 02111-1307, USA.
  29. *
  30. * Please check out the elilo.txt for complete documentation on how
  31. * to use this program.
  32. */
  33. #define MAX_ARGS 256
  34. INTN
  35. argify(CHAR16 *buf, UINTN len, CHAR16 **argv);