代码搜索:SWAP
找到约 10,000 项符合「SWAP」的源代码
代码结果 10,000
www.eeworm.com/read/103011/15749429
gif swap.gif
www.eeworm.com/read/102394/15784311
c swap.c
#include
#include
#include
#define BASE_GSL_COMPLEX_LONG
#include "templates_on.h"
#include "swap_source.c"
#include "templates_off.h"
#undef BASE_GSL
www.eeworm.com/read/102394/15784364
c swap.c
#include
#include
#include
#include
#define BASE_GSL_COMPLEX_LONG
#include "templates_on.h"
#include "swap_source.c"
#include "templ
www.eeworm.com/read/189298/8477212
c swap2.c
/*
** Exchange two integers in the calling program.
*/
void
swap( int *x, int *y )
{
int temp;
temp = *x;
*x = *y;
*y = temp;
}
www.eeworm.com/read/189298/8477223
c swap1.c
/*
** Exchange two integers in the calling program (doesn't work!).
*/
void
swap( int x, int y )
{
int temp;
temp = x;
x = y;
y = temp;
}
www.eeworm.com/read/390147/8481948
c m_swap.c
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id:$
//
// Copyright (C) 1993-1996 by id Software, Inc.
//
// Th
www.eeworm.com/read/390147/8481954
h m_swap.h
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id:$
//
// Copyright (C) 1993-1996 by id Software, Inc.
//
// Th
www.eeworm.com/read/290380/8486144
c use_swap.c
#include
void swap_values(int *, int *);
void main(void)
{
int a = 1, b = 2;
printf("Original values a %d b %d\n", a, b);
swap_values(a, b);
printf("Swapped value
www.eeworm.com/read/290325/8489775
h tu_swap.h
// tu_swap.h -- Ignacio Casta駉, Thatcher Ulrich 2003
// This source code has been donated to the Public Domain. Do
// whatever you want with it.
// Basic endian-swapping stuff.
#ifndef TU_SWAP_H